How to deploy your first Azure Container App with Bicep and the AZ CLI 💪

Поділитися
Вставка
  • Опубліковано 1 гру 2024

КОМЕНТАРІ • 19

  • @kamaleshwaran06
    @kamaleshwaran06 2 місяці тому

    You are an awesome teacher!! Very calm and clear!!

  • @JoeMcKnight-z6y
    @JoeMcKnight-z6y 8 місяців тому +2

    Just discovered your channel, excellent so far, many thanks!!!

    • @willvelida
      @willvelida  8 місяців тому

      Thank you so much! If you have any requests on what you'd like to see, please let me know!

  • @SwampyFox
    @SwampyFox 7 місяців тому

    Thanks! I was able to work through this to learn bicep/aca! And it worked!!! woohoo! Thanks.

  • @gpzim981
    @gpzim981 3 місяці тому +1

    Great tutorial. How can I refer to images that I stored on my private Azure Container Registry?

    • @willvelida
      @willvelida  3 місяці тому

      You can pass the name of your image as a parameter in your Bicep file, and then pass it through as a inline parameter during your ci/cd.

  • @kamaleshwaran06
    @kamaleshwaran06 2 місяці тому

    Can i dynamically create a container environment with multiple container apps?

  • @davidclare655
    @davidclare655 2 місяці тому

    If I am using Private Endpoints for Azure Redis or Azure Cosmos then i dont need a vNet?

  • @grif.n
    @grif.n 3 місяці тому

    Hi Will, thanks for the great content - very helpful! I have a question about azd and how it builds/deploys containers automatically. When I used `azd up` it seems to automatically build an image and deploy it with a repository and tag in ACR. I'm not sure how to properly reference it in other parts of my bicep templates or how to customize any of the naming etc.

  • @JohnGoldsmith-y4w
    @JohnGoldsmith-y4w 5 місяців тому

    Really useful - thanks Will. Is there a reason you don’t define the resource group in the template, or is it just the setup you had for this walkthrough? Thanks again.

  • @AizenTaicho-ci1nb
    @AizenTaicho-ci1nb 7 місяців тому +1

    Could you do one deploying simple container app using the new AVM bicep framework?

    • @willvelida
      @willvelida  7 місяців тому

      You can! I've just published a new video that deploys a ACA environment and app using AVM bicep: ua-cam.com/video/g40NNqInm90/v-deo.html

  • @SulaimanM96
    @SulaimanM96 8 місяців тому +1

    I'm currently deploying using Bamboo Windows Powershell script. It was hard coding the environment values in bamboo, so whenever I deploy, my container environment variables will have a source type of 'Manual Entry'. I want to update this to Reference a secret type and then just give the name of my secret in my deployment script. Do you know how to update container app's source type in environment variables via script?

    • @willvelida
      @willvelida  8 місяців тому

      Hmm that's not something I've ever done before, but looking at the Azure PowerShell docs, it looks like you can create a new secret in Container Apps with New-AzContainerAppSecretObject. You can then update the Container App with the secret using Update-AzContainerApp, and then passing the secret object to a New-AzContainerAppConfigurationObject in the -Secret parameter: learn.microsoft.com/en-us/powershell/module/az.app/update-azcontainerapp?view=azps-11.4.0
      Let me know if this helps or not. If it doesn't, I'll try and dig up the answer for you when I'm back from holidays 😊

  • @BrianHallmanac
    @BrianHallmanac 8 місяців тому +1

    Nice job! I thought the max scale-out was 30 instances and not 10. Am I thinking of something else?

    • @willvelida
      @willvelida  8 місяців тому +1

      Thanks Brian! Just did a quick check of the docs, and it looks like the max scale out value is 300! learn.microsoft.com/en-us/azure/container-apps/scale-app?pivots=azure-cli#scale-definition
      Thanks for spotting that! I'll make an edit to the video when I have a chance 😊

    • @BrianHallmanac
      @BrianHallmanac 8 місяців тому +1

      @@willvelida Oh wow! That’s news to me! I had heard that they were going to increase it, but I did not know that they were going to go that far. That’s pretty cool!

    • @willvelida
      @willvelida  8 місяців тому

      @BrianHallmanac me neither! They must have had some demand for it from developers who need to scale out, but want to avoid managing Kubernetes at all cost 😁 Really useful though 😊

  • @sergeykichuk2586
    @sergeykichuk2586 7 місяців тому

    Where is the usage of Azure Container Registry??