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

Is it possible to create one-off (run to completion) jobs in Azure Container Apps?

We have a job for running our DB migrations, that I would like to run on Azure Container Apps (it runs on Azure Container Instances now). The idea is that whenever we create a new migration, this job gets built and deployed, and then it triggers the…
Søren Pedersen
  • 764
  • 8
  • 20
0
votes
0 answers

ContainerApp Revision Failed when using dapr

I have created containerapp environment with one containerapp using Bicep template and here is a snippet of how I configured the environment ingress: { external: true targetPort: 80 allowInsecure: false transport:'http2' …
eslam helmy
  • 71
  • 1
  • 4
0
votes
0 answers

Running a one time job on Azure Container Apps

I'm trying to figure out what the easiest way of running a "one time job" on Azure Container Apps is. I know that it can be done with Azure Container Instances or Azure Kubernetes Service, but is there something similar for ACA? Ideally, I'm looking…
Joel
  • 8,502
  • 11
  • 66
  • 115
0
votes
1 answer

Azure Container Apps quota

As per Container apps documentation it says an environment can have maximum of 20 cores. Does it mean that microservices inside one environment cannot request beyond 20 cores when it is required to scale-out? enter image description here
Rama
  • 1
  • 1
  • 3
0
votes
0 answers

Azure ContainerApps : 0/7 nodes are available: 7 Insufficient cpu

I have containerapp environment which contains 7 containerapp, each containerapp has two containers inside, one container for the api and another one works as background worker when making new revision, it was taking around 1 min to 5 min to be…
eslam helmy
  • 71
  • 1
  • 4
0
votes
0 answers

Is there a way to have multiple event hub consumers process data from the same consumer group?

I have a couple of containers running in Azure Container Apps. Each of these processes messages coming to Event Hub on their specific partition. However, after some amount of unread messages, the container app deploys one more of each container, but…
0
votes
1 answer

Cannot edit config after creating Azure app service yaml file

In Azure I created a container (Web App for containers) and under the docker tab added yaml file for the docker config. However after creating the container I cannot find anywhere to edit this yaml file. Is the only option to delete the container…
0
votes
1 answer

Spring Boot application shutting down immediately after start

I can't figure out why my dockerized Spring Boot application terminates immediately after starting up. I looked into similar issues but couldn't find a reason for mine to fail yet. The docker image runs ok locally, but when running on Azure…
Evandro Pomatti
  • 13,341
  • 16
  • 97
  • 165
0
votes
1 answer

VisualStudio ContainerApp fails to Build when Publishing

I have two ContainerApps in the same solution, both build and run locally in Docker desktop, and 1 of them publishes to an Azure ContainerApp properly. The other one appears identical structurally and w.r.t. dockerfile/projectFile but fails to…
pseabury
  • 1,615
  • 3
  • 16
  • 30
0
votes
2 answers

Remote Debugging in Azure Container Apps

I will have 50-60 microservices each built as asp.net web API, all running within a single Azure Container Apps environment, each able to synchronously communicate with each other via DAPR. Is it possible to attach (via VS Code or VS) a debugger…
0
votes
0 answers

Azure Container Apps

I followed a tutorial how to setup a basic front-end and back-end app (post) in an ACA environment, as follows: a. backend - python-fastapi (I've implemented CORS related config to enable it) b. frontend - old school html, using fetch to get and…
ka totoy
  • 23
  • 2
0
votes
1 answer

How can I modify Container App Environment customerId?

I have wrongly deleted the Log Analytics Workspace and moved the Container App Environment to a new group. After that I found out my Container App Environment had the wrong customerId. "appLogsConfiguration": { "destination":…
JJimbo
  • 1
0
votes
3 answers

Can't delete resource group from Azure Container App

I recently created inside one of my resource groups an Azure Container App (with an environment & the rest) just for learning reasons (at the West Europe region). After I played with that, I decided to delete it. I tried to delete it without any…
0
votes
0 answers

My container executes successfully, but provision status is "Failed" and system logs say ContainerCrashing; why?

I have an Azure Container App that continuously fails at provisioning and the logs continuously report "ContainerCrashing", however from my end I'm seeing that the container is executing and terminating successfully. The only difference between this…
Vijchti
  • 526
  • 6
  • 19
0
votes
1 answer

How to investigate Dapr service invocation 500 error

When I use service invocation in my Dapr applications and when they are deployed to Azure Container Apps I get: Dapr.Client.InvocationException: An exception occurred while invoking method: 'health-check' on app-id: 'customers' --->…
spottedmahn
  • 14,823
  • 13
  • 108
  • 178