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

Azure ContainerApps Security Updates

When building and deploying Azure Container Apps (ACA), the images specified in the dockerfile (or the base debian OS image that Microsoft uses) seem to carry security issues for periods of time. As an example, given: FROM…
pseabury
  • 1,615
  • 3
  • 16
  • 30
0
votes
0 answers

CORS issue in Container App that has custom domain with same base domain

I have Angular app deployed in two container apps with custom domain as below app1.dev.myproduct.mydomain.com app2.dev.myproduct.mydomain.com Here app1 is the shell container and it calls app2 using Module Federation. Even though they are in the…
0
votes
1 answer

Use Bicep to deploy an Azure Container App with a managed certificate

Is there a working example of deploying an Azure Container App with a Managed Certificate and a custom domain? This is what I have so far (I think I'll need to add resources for the DNS verification too) var uiHostName =…
David Hayes
  • 7,402
  • 14
  • 50
  • 62
0
votes
1 answer

Connecting Azure App Service to Azure Container App using gRPC in a vnet

Given an Azure Virtual Network with two subnets, one with an Azure App Service that has a gRPC client and the other an Azure Container App with a gRPC server, what is the correct URL and port to allow message passing? The error…
Boggin
  • 3,251
  • 3
  • 33
  • 48
0
votes
1 answer

Availability of Azure container apps

I am currently investigating if an architecture some colleagues designed will meet the customers' SLAs. One part of that architecture is the use of Azure container app. Azure states that the SLA of this service is 99.95%, but I am wondering if this…
EllisTheEllice
  • 905
  • 3
  • 14
  • 33
0
votes
1 answer

How to make ContainerApp working even with probe errors?

I have deployed Container App with Ingress, after couple of minutes when i want to check logs for this container with az containerapp logs show -n -g In return I get: Could not find a replica for this app. What…
Dark Furby
  • 97
  • 1
  • 8
0
votes
1 answer

CLI response doesn't specify what type of ingress traffic setting is selected in an Azure ContainerApp

I'm working with Azure ContainerApps via CLI. I'm trying to check what ingress traffic setting (Allow all traffic / Limited to VNet / Limited to Container Apps Environment) is allowed in my containerapp using the CLI. Doing an az containerapp list…
Impulse
  • 3
  • 2
0
votes
1 answer

How to resolve this error while deploying React Python app on Azure Container Apps?

I was able to deploy my code and image successfully on Google Cloud Run. But the same setup is resulting in error while deploying on Azure Container Apps. Would you please suggest what could be cause and how it can be fixed? I am executing the…
Atharva
  • 6,711
  • 5
  • 31
  • 39
0
votes
1 answer

Azure Container Apps CORS issue

I have a big problem with my web app. Starting with some info... the backend is in ASP.NET Core 6, and the frontend is in React. I deploy this site using Azure Container Apps inside the same Resource Group end in the same Container Environment. All…
0
votes
2 answers

even after adding package source Nuget packages from github private repository not restoring in github action for building docker image

I have added package source to my github actions but I still get error that my private packages cannot be found in nuget.org My code for building a docker image and deploying to Azure Container Repository jobs: build: runs-on: ubuntu-latest …
0
votes
1 answer

How to reference secrets in Azure Container Apps from Vite (VueJS)

I am trying to access it as recommended here: https://vitejs.dev/guide/env-and-mode.html#:~:text=console.log(import.meta.env.VITE_SOME_KEY)%20//%20123 The problem is how do I pass Environment variables to VITE after the container image is built? I…
0
votes
1 answer

using visual studio DockerfileRunArguments parameter within launchsettings.json

I am creating container app than uses a Docker container. ASPNETCORE_ENVIRONMENT="Staging" I figured I could reference this docker environment file with --env-file dockerfile-staging.conf "Docker": { "commandName": "Docker", "launchBrowser":…
David
  • 3,047
  • 4
  • 45
  • 79
0
votes
1 answer

APCU not appearing in an Azure Linux Docker Container

I am trying to get apcu working from an Azure docker container running in a Linux app service plan. I have tried the LAMP docker running locally and apcu works fine. When I run in Azure there are no errors but phpinfo() does not mention apcu, it's…
Rob Sedgwick
  • 4,342
  • 6
  • 50
  • 87
0
votes
1 answer

Azure Function with kubernetes secret repository in Azure Container Apps

I have a function app that is deployed using Azure Container Apps. Azure Functions supports several secret repositories. Since blob isn't really convenient for me, I'm currently using keyvault. This has the disadvantage that I have to provide a Key…
Christian Klemm
  • 1,455
  • 5
  • 28
  • 49
0
votes
3 answers

How to get the URL of a container app in terraform?

I try to deploy a backend and frontend as container apps in azure with terraform. The frontend needs to have the URL of the backend as environment variable. Is this possible in one go? Like for example with docker-compose where the internal hostname…