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

Hosting ShinyProxy on Azure

I'm exploring the Docker capabilities for ShinyProxy on Azure and I want to set it up in a simple, expandable, and affordable way. As far as I understand there are five ways to set up Docker-based services on Azure. Questions My question is…
0
votes
0 answers

Can Azure Container Apps be configured with IP restrictions on external traffic only?

I have a requirement to restrict external access to an Azure Container App on a consumption plan by IP address. However, configuring this ingress also restricts traffic coming from itself and within the managed environment. Is it possible to…
Sio
  • 1,419
  • 1
  • 13
  • 23
0
votes
0 answers

Azure Container Apps Login Flow

Context I am trying to setup a basic app based upon this todo template with a front-end web app and a back end server https://github.com/azure-samples/todo-python-mongo-aca Goal I would like the user to be able to 1. login using google 2. use an…
0
votes
0 answers

Accessing Grafana in Azure Container App times out

I am trying to host Grafana (as well as a few other logging tools in a sidecar pattern) in an Azure Container App, and I’ve been having an issue where the container appears to start correctly, but when I go to the URL the page just loads forever…
Steve
  • 9,335
  • 10
  • 49
  • 81
0
votes
0 answers

Azure container app update the container image registry and image

I am working on Azure container app. I have already created the container app from Azure portal with the default image which is from DockerHub registry. But Now I want to deploy actual code to that container app and I am using az containerapp update…
Mahajan344
  • 2,492
  • 6
  • 39
  • 90
0
votes
1 answer

Azure Container App Managed Certificates deployed using Bicep

It seems like I have a chicken-and-egg problem with deploying my Azure Container App Apps. So I have one project that deploys let's say 'the base infrastructure' for my multi-service app in Azure. It deploys an Azure Container App Environment where…
Eduard Keilholz
  • 820
  • 8
  • 27
0
votes
0 answers

How to update ACR password in the Azure container app secrets without using UI?

As we have more than 50 container apps that require ACR password updates, doing it through UI is a very long task. I tried to create a Makefile which uses the az cli tool to get the secret name and update with new password. Note, the secret name was…
0
votes
1 answer

Scale Azure container app based on memory

Is it possible to scale azure container app based on memory consuption? Docs says it is possible via custom rule, but i only see this under custom option:
Goran Bralo
  • 453
  • 3
  • 11
  • 23
0
votes
0 answers

Unable to remove/deactivate azure container apps revisions due to ResourceGroup level deny assignment

I am not able to deactivate azure container app revisions and they are consuming my subscription. I have a container app which has many revisions, the status of revisions are running, previsioning status are Provisioned, when I try to deactivate…
Black Bear
  • 230
  • 2
  • 7
0
votes
1 answer

ContainerApp deployment fails in Bicep: Failed to provision revision for container app

Container App resource containerApp 'Microsoft.App/containerApps@2023-04-01-preview' = { name: containerAppName location: location identity: { type: 'SystemAssigned' } properties: { environmentId:…
0
votes
1 answer

az containerapp create with --image argument along with --yaml argument

I am using this to create a azure container app az containerapp create -n sample -g my-container-app-env --image sampleapi-docker-build.domainname/sample-dotnet:2.0.2989 --yaml ./configuration.yml In my configuration.yml file template: containers: …
Jody
  • 323
  • 2
  • 11
0
votes
1 answer

azure devops agent running in container

This post describes how to create docker hosted devops build agent. The only change I made was for the Dockerfile to use FROM mcr.microsoft.com/dotnet/sdk:7.0 as the base image rather than vanilla ubuntu. I've run through this and it works great to…
0
votes
1 answer

containerApp revision update fails with code: 'EACCES'

i have built a nodejs application using docker. The image is pushed to a private ACR repository. I want to deploy it to an Azure ContainerApp in a vnet. In the Docker File i have opened port 80 Contents: FROM node:16-alpine WORKDIR /app COPY…
Coder
  • 39
  • 6
0
votes
2 answers

RabbitMQ in container app Azure, cant see the UI

deploy rabbitmq:latest in an azure container app, enable ports 15672; I can't see the rabbit UI and I don't know why it seems that everything is well displayed. environment variables added: -RABBITMQ_DEFAULT_USER=user …
Diego Diaz
  • 15
  • 1
  • 7
0
votes
1 answer

Azure Container Apps with internal VNET faills to provision

I want to create a Azure Container Apps Environment that uses an already existing Subnet with /23 addresses. The Environment gets created but after a couple of hours without any response I get this on the Overview page of the Environment: The…