Questions tagged [azure-container-apps]

Azure Container Apps ( ACA ) is a new service https://learn.microsoft.com/en-us/azure/container-apps/ which is an abstraction layer atop of Azure Kubernetes Service ( AKS ) ... it provides a serverless approach so you do not need to handle the underlying AKS infrastructure provisioning ... you create an environment then create a containerapp using that env which offers Continuous Development ... it allows you to scale up or down to zero containers

Azure Container Apps Build and deploy modern apps and microservices using serverless containers https://azure.microsoft.com/en-us/services/container-apps/#overview

Comparing Container Apps with other Azure container options https://learn.microsoft.com/en-us/azure/container-apps/compare-options

193 questions
3
votes
2 answers

How to open port on Azure Container Apps

We have created an Azure Container App which hosts a container for rabbitmq (docker.io/rabbitmq:latest), for this to work we need top expose port 5672 and 15672 (for dashboard). Is this possible, do we need to enable ssh first?
Rafael
  • 1,099
  • 5
  • 23
  • 47
3
votes
2 answers

Scheduling start of a container in Azure Container Apps

I have a short running container that does background processing (no ingress) that I have deployed to the Azure Container Apps service in Azure, my config is min replicas 0 (for when the container completes its work and exits) and max replicas 1 (i…
DriveBlind
  • 67
  • 9
3
votes
2 answers

Why are Azure Container Apps capped at 2 cpu cores total?

Been looking into azure container apps and their limits make no sense. They say a total of 2 cpus for all container instances of this app and what does that mean? It seems it's some kind of a limit total for revisions not for apps in a container…
Teebu
  • 677
  • 7
  • 18
3
votes
2 answers

deploy new version of azure container app

I've followed this guide to deploy my custom image but now I'm stuck on how do I deploy vNext of my container image? Skimming this YouTube video, it seems revisions are the way but how using the Azure CLI? There's also an interesting concepts page…
spottedmahn
  • 14,823
  • 13
  • 108
  • 178
3
votes
1 answer

Unable to locate image when creating container Azure Container Apps

I created an Azure Container Registry (Region is CentralCanada) and then uploaded a docker image from Visual Studio for an .Net 6.0, Web API project. After the Linux image was deployed successfully I am able to see it within my Azure Container. Then…
3
votes
1 answer

How to use a custom domain with a Azure Container App?

I created two Azure Container App inside an Container App Environment; Then they got URLs similar to…
Tony
  • 16,527
  • 15
  • 80
  • 134
2
votes
1 answer

azure bicep to create a container app with an image from secure registry

I would like to create an azure container app that pulls its image from an existing azure container app registry that sits in a different subscription. My main bicep: creates a user assigned managed identity grants the ACR Pull RBAC role for the…
2
votes
1 answer

Deploying Postgres DB in Azure Container App

Hi I am new to Azure and I got a requirement to deploy Postgres DB to Azure Container app. I know its not a good practice to host a DB inside a containerize environment. I followed this link from the Microsoft documentation to deploy the app and…
infaz98
  • 83
  • 1
  • 5
2
votes
1 answer

How to override local User Secrets and appsettings.json with Azure Container App's Secrets?

I have an appsettings.json in my ASP.NET Core 6 Web API and a secrets.json I use for development connection strings, like below: { "ConnectionStrings:MainDatabase": "CONNECTION STRING HERE" } After publishing my API as an Azure Container App, how…
2
votes
0 answers

Non-http communication between two containers in Azure Container Apps

I'm trying to deploy two containers in Azure Container Apps. The two containers are placed in the same Container Environment. The "architecture" is as follows: Public HTTPS ==> Container A ==(gRPC port 7345)==> Container B Container A can talk to…
Casper Jensen
  • 551
  • 1
  • 5
  • 15
2
votes
2 answers

How to add Azure Container App adding to a VNET

Can anyone show me the YAML used to add a "Azure Container App" to a VNET. NOTE: This is an Container App not Web App or Container Instance (brand new GA). I am updating my YAML to include the VNET, 'Az containerapp update' runs without failing, but…
Garry Taylor
  • 940
  • 8
  • 19
1
vote
0 answers

Azure Container App "InvalidParameterValueInContainerTemplate" Custom Vnet

I'm trying to deploy a quickstart image to my azure container environment and am receiving the following error; The following field(s) are either invalid or missing. Field 'template.containers.simple-hello-world-container-image' is invalid with…
1
vote
1 answer

suggest best way to do Path based routing using appgateway when multiple azure container is hosted as internal

Here scenario is , we have app service needs to access the azure container apps hosted as internal, that can be accessesed with the vnet. The app gateway routing works well if we have one container app and we have achieved using below link- single…
1
vote
1 answer

How can I get cloudRoleName and cloudRoleInstance logged with Application Insights with a .NET Azure Container App?

When hosting an ASP.NET Core application on Azure Container Apps, cloudRoleName and cloudRoleInstance are currently not logged (or left empty) with Application Insights.
Kai Walter
  • 3,485
  • 2
  • 32
  • 62
1
vote
1 answer

mysql> yaml > Azure Container Apps> translate Command and args from docker compose

I am deploying the offical mySQL 5.7 to Azure Container Apps. I have the image / container running. I have translated a docker-compose file to yaml. I have problem translating the "command" node in docker Compose I have command:…
Tony
  • 1,394
  • 5
  • 22
  • 48
1
2
3
12 13