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
1
vote
1 answer

How to get logs from azure container app?

I have an Azure Container App with simple nodeJs api service. I need to read logs of this application, just to see my console.log('Hi there!'). Container App has Monitoring Logs with huge list of different queries. Which one I need to use to see my…
Nikita Polevoy
  • 319
  • 5
  • 17
1
vote
1 answer

How do I deploy a Streamlit app via Azure Container Apps?

I am trying to deploy a Streamlit app via Docker on Azure Container Apps. This is what the docker file looks like: FROM python:3.9 RUN mkdir /workdir WORKDIR /workdir COPY ./requirements.txt . RUN pip install -r requirements.txt COPY . . EXPOSE…
MYK
  • 1,988
  • 7
  • 30
1
vote
5 answers

Azure Container App: Only allow access over Api Management

I want to restrict access to my Azure Container App with an Api Management in Azure. I successfully linked the Api Management with the Container App and I have activated a Subscription with an Api Key that will prevent public access over the Api…
Mthenn
  • 189
  • 1
  • 14
1
vote
3 answers

Scheduling Execution of Batch Jobs in Container Apps Enviornment

I am getting started with container apps in Azure and migrating to a container driven environment for our deployment. Currently we have many programs in multiple languages (Java, Python, PHP, etc) which are executed on a recurring schedule. These…
CPanarella
  • 11
  • 1
1
vote
1 answer

Change public folder for Ruby on Rail 5 docker application

We are running a Ruby on Rails 5 application in a Docker Container. The container is hosted on Azure Container Apps. We need to persist the public folder and would like to use Azure File Share for this. The share is working and accessible (test via…
Mario
  • 978
  • 2
  • 11
  • 31
1
vote
0 answers

Connection refused when calling Dapr sidecar in Azure Container Apps

I have an ASP.NET 6 application using Dapr. I works in the local development environment, but when I deploy it to Azure Container Apps, it is unable to reach the Dapr sidecar. The application is defined in Bicep, with the following settings relevant…
Vidar Kongsli
  • 826
  • 2
  • 9
  • 20
1
vote
1 answer

Azure Container Apps - App with multiple containers - azure cli command

I am using Azure Container Apps to host our Containers. I want one instance of an Azure Container App to host two different containers (these are services that share a similar lifecycle). This is possible to do manually via the Azure portal, but I…
jonho
  • 1,680
  • 2
  • 19
  • 29
1
vote
2 answers

Container App or Container App Environment ARM Template

I am trying to create a container app using ARM template. The container app is within a VNet and ingress connection is also limited to VNet. I downloaded the template for automation from portal and it has this in template { "name":…
1
vote
1 answer

VS 2022 Publish Azure Function to Container Apps

Bear with me for this noob question but I am just starting to look into Container Apps. How come I can deploy a .NET Web Api project from just by right-clicking and choosing Publish and then I'm able to see Container Apps: If I do the same thing on…
1
vote
1 answer

Azure Container Apps - Service stopping despite minimum replica being 1

I've got a .NET worker service based on a cron schedule running in a Docker container and pushed up to Azure Container Apps. The schedule is managed within the application itself. The scaling is set to have a minumum of 1 replica running at all…
samjas
  • 41
  • 1
  • 6
1
vote
0 answers

Files in AIRFLOW_HOME (which is an Azure File Share MOUNT) are created as root

I have set up the airflow in Azure Cloud (Azure Container Apps) and attached an Azure File Share as an external mount/volume 1. I ran **airflow init service**, it had created the airflow.cfg and `'webserver_config.py'` file in the **AIRFLOW_HOME…
1
vote
1 answer

The JSON value could not be converted to System.Nullable`1[Microsoft.ContainerApps.ApiResources.Models.UnauthenticatedClientAction

I have an Azure Container App and I want to enable Authentication with Azure CLI: az containerapp auth update resourceGroup='lorem' appName='ipsum' az containerapp auth update --resource-group $resourceGroup --name $appName --enabled true…
Markus Meyer
  • 3,327
  • 10
  • 22
  • 35
1
vote
0 answers

Azure Container Web App Giving ;( Application Error

Just starting to learn Docker Containers. Started by trying to get a simple web app published. I only created the project and published it to Azure. Everything is fine until the web app runs. I get :( Application Error. I read someplace to expose…
Dave
  • 13
  • 2
1
vote
2 answers

Azure container App fails to start with Julia image

I am trying to run Julia code in azure container app, but it fails for some reason. docker file is pretty simple: FROM julia:1.7-bullseye COPY . / EXPOSE 8080 RUN julia --project='/' -e 'using Pkg; Pkg.build()' ENTRYPOINT julia --project='/'…
JoeBloggs
  • 89
  • 7
1
vote
1 answer

What are plausible reasons provision a container app in Azure fails with "Conflict", and why are there no logs written to the analytics workspace?

The exact status message provisioning fails with is: { "status": "Failed", "error": { "code": "90008", "message": "Failed to provision revision for container app '***********'. Error details: Operation expired." } } When…