You are an awesome teacher!! Very calm and clear!!
@JoeMcKnight-z6y7 ай бұрын
Just discovered your channel, excellent so far, many thanks!!!
@willvelida7 ай бұрын
Thank you so much! If you have any requests on what you'd like to see, please let me know!
@grif.n3 ай бұрын
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.
@kamaleshwaran062 ай бұрын
Can i dynamically create a container environment with multiple container apps?
@davidclare655Ай бұрын
If I am using Private Endpoints for Azure Redis or Azure Cosmos then i dont need a vNet?
@gpzim9812 ай бұрын
Great tutorial. How can I refer to images that I stored on my private Azure Container Registry?
@willvelida2 ай бұрын
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.
@SwampyFox7 ай бұрын
Thanks! I was able to work through this to learn bicep/aca! And it worked!!! woohoo! Thanks.
@JohnGoldsmith-y4w4 ай бұрын
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.
@SulaimanM968 ай бұрын
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?
@willvelida7 ай бұрын
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 😊
@AizenTaicho-ci1nb7 ай бұрын
Could you do one deploying simple container app using the new AVM bicep framework?
@willvelida6 ай бұрын
You can! I've just published a new video that deploys a ACA environment and app using AVM bicep: kzbin.info/www/bejne/nWWTf4GnftOgb5I
@BrianHallmanac8 ай бұрын
Nice job! I thought the max scale-out was 30 instances and not 10. Am I thinking of something else?
@willvelida8 ай бұрын
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 😊
@BrianHallmanac8 ай бұрын
@@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!
@willvelida8 ай бұрын
@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 😊