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
12
votes
0 answers

container apps preview - container revision provision failed - No error information provided

Azure container apps preview, revision provisioning status failed but no error messages are available. How do I diagnose the problems with provisioning? Log Analytics has no tables long after provisioning, and no queries return data. Container…
Carlos Online
  • 266
  • 1
  • 10
10
votes
1 answer

How do I diagnose a failed Azure Container App revision?

I'm currently working through some Azure Container App quick starts. I've just attempted to create one that's Dapr enabled with storage account state store. It has a provision status of failed but seemingly no other information. I'm not aware of how…
MrPanucci
  • 497
  • 2
  • 11
8
votes
1 answer

Container App fails to start up with "standard_init_linux.go:228: exec user process caused: exec format error"

Was using Azure Container Apps and on deploy the command failed to provision the container and told me to check log analytics. When I checked I only see a single log from the container that says: standard_init_linux.go:228: exec user process…
jeffhollan
  • 3,139
  • 15
  • 18
6
votes
2 answers

Stop an Azure ContainerApp?

I have an Azure ContainerApp deployed with a single revision, and I'd like to stop it - but not delete it and have to re-deploy it. I see the image in the registry, and there are options via the portal to deploy it to an AppService or…
pseabury
  • 1,615
  • 3
  • 16
  • 30
6
votes
3 answers

Azure Container Apps Restarts every 30 seconds

I have an Azure Container App that's based on the hosted BackgroundService model. It's essentially just a long running console app that overrides the BackgroundService.ExecuteAsync method and waits for the stop signal (via the passed cancellation…
pseabury
  • 1,615
  • 3
  • 16
  • 30
6
votes
2 answers

How to add environment variables to Azure Container App

I cannot find a way to add environment values to Azure Container App in the portal. How can I add within Azure Portal?
Ramesh
  • 1,041
  • 15
  • 39
5
votes
1 answer

Is there any way to increase the Azure Container App memory limit past 4GB?

I like the Azure container app service, but we are struggling with the 4GB limit per container. Is there any way to increase this limit without switching to container instances?
MYK
  • 1,988
  • 7
  • 30
5
votes
2 answers

How can I add a custom domain to Azure container app via bicep?

I have a bicep template that creates several container apps. They shall have a custom sub domain in my private DNS zone. However, I have the problem that this leads to a circular dependency: To add the CName and verification TXT record to the DNS…
Thomas F.
  • 717
  • 3
  • 13
4
votes
1 answer

Azure container app, unable to pull from private registry

I have just created an Azure Container App and I am trying to link it to a private repository on docker.io. It works if I make it pull a public image but not if it's private, even though I specified all the information. I have also used the…
pascx64
  • 904
  • 16
  • 31
4
votes
2 answers

Deploy docker compose on Azure Container App

from ACA docs we have to specify target port of the container az containerapp create \ --name my-container-app \ --resource-group $RESOURCE_GROUP \ --environment $CONTAINERAPPS_ENVIRONMENT \ --image…
4
votes
1 answer

Container App fails with error "Error provisioning the container app. Container failed to start-up"

Was creating an Azure Container App, I got an error when creating of "Error provisioning the container app. Container '' failed to start-up. Please check Log Analytics workspace for container logs." When I went to Log Analytics and Logs I didn't…
jeffhollan
  • 3,139
  • 15
  • 18
3
votes
1 answer

How to provide access of ACR to Azure container apps which are not in same network group?

I have ACR i.e., myregistry in production-network-group and I was creating container apps in dev-network-group, uat-network-group and prod-network-group. Currently, I was trying to connect with myregistry from dev, uat networks using credentials as…
3
votes
1 answer

Persist data inside Azure container app that runs Postgres DB

I am new to Azure Container Apps. I had a requirement to deploy set of applications to Azure container apps. There was a problem with the setup when I deploy my Postgres DB as container when the container shut down data in the container will…
3
votes
1 answer

Add certificate from Azure Keyvault to Azure Container Environment with Bicep

I need a mechanism to download a .pfx certificate from Keyvault and to then upload it to an Azure Container Environment, all via Bicep. This will minimise any manual intervention when the certificate is updated. I am currently adding a certificate…
3
votes
2 answers

How to use Azure Front Door with Azure Container Apps?

I plan to use Azure Front Door in front of my Container App and allow access only through Front Door. I have deployed an Internal Container Apps environment with a custom virtual network. I have added an NSG to the infra-subnet with an Inbound Rule…
1
2 3
12 13