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

Enable Internal Load Balancing Mode for Container App Environment using Azure Terraform AzApi Provider

For an ACA Environment, How do I enable Internal balancer mode using AzApi Terraform provider. Here is current configuration: resource "azapi_resource" "aca_env" { for_each = { for aca_env in var.aca_envs : aca_env.name => aca_env} type =…
0
votes
1 answer

Delete Azure Container App Environment using Azure PowerShell

I am using below Azure Powershell command to remove an ACA Environment, but it is not working: Remove-AzAppServiceEnvironment -Name fer-bpbu-d-cae-euwe-dev -ResourceGroupName "fer-bpbu-d-rsg-conapp" Unable to find appropriate command to remove…
Rajesh Swarnkar
  • 601
  • 1
  • 6
  • 18
0
votes
1 answer

create docker image for azure devops build agent unable to locate package for dotnet-sdk-7.0

I'm trying to follow the guidance from this blog post I need the docker image to have the dotnet sdk installed. It's also got to run in Azure Container Apps, which has a limitation that is can't have root access. My Dockerfile is as follows: FROM…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
1 answer

How to configure Yarp Reverse Proxy between clients and CoreWCF Service (Azure Container app)

I have a CoreWCF Service hosted as an Azure container app, I need to add a reverse proxy between clients and service. I tried using Azure Application Gateway but without success, I keep getting Bad Request error. I found a microsoft library called…
0
votes
1 answer

Azure ContainerApps YAML registry identity

I am trying to spin up an Azure ContainerApp service via a YAML configuration file. The problem is with the following block: registries: - passwordSecretRef: null server: xxx.azurecr.io identity:…
0
votes
0 answers

How do I solve "libmagic" import error in Azure Container App

$ python3 manage.py migrate Traceback (most recent call last): `File "/app/manage.py", line 24, in main() File "/app/manage.py", line 20, in main execute_from_command_line(sys.argv) File…
0
votes
1 answer

Connect to Azure Container Apps (CoreWCF Service) from old versions of Windows OS (Win7, Server 2008 etc..)

I configured a CoreWCF service (.NET 6.0), containerized and hosted it as an Azure Container Apps. The clients that connect and use this service are Windows Forms (.NET Framework 4.6). While doing some tests, I noticed that in computers with older…
0
votes
0 answers

Azure Container Apps - How to import trusted 3rd party certificate

The code in my azure container app is consuming an https endpoint. The SSL certificate of endpoint is issued by my company. All parent and root certificates are also issued the same way. I need to trust this certificate in my Azure Container…
Ahmet Altun
  • 3,910
  • 9
  • 39
  • 64
0
votes
1 answer

Terraform, azurem create container app with image from a different subscription

I have a image registry in Azure Subscription A and I want to deploy an azure Container App in a Azure Subscription B using the image from the Azure Subscription A registry repository. I'm trying to do this using service principles as…
0
votes
1 answer

Unable to update image of containerApp with az up command

I have a containerApp built with a default public image through a bicep script. I assign a system managed identity to the containerApp. I have assigned AcrPull role to the identity on the ACR private registry The ACR private registry has admin…
0
votes
1 answer

Unable to remove system assigned managed identity from Azure ContainerApp

I assigned a system assigned managedidentity to a containerApp through the Azure Portal. It has the role of AzrPull set at both the subscription level and registry level. I try to remove the managedidentity through CLI az containerapp identity…
0
votes
1 answer

How to connect a AzureContainerApp to an azure hosted PostgreSQL flexible server that isn't open to the internet

I've lost a day trying to figure this out so I'm really hoping that someone can point me in the right direction. We have a PostgreSQL (flexibile server) hosted on Microsoft Azure that has no public internet access. (in its own resource group) We…
Mark Dalby
  • 61
  • 1
  • 6
0
votes
1 answer

AzureContainerApps@1 task fails with Unable to authenticate against ACR instance

I am trying to update a containerApp from a dockerimage in ACR built in previous step through Azure DevOps pipeline running with VMSS agent. The variable acrContainerRegistry contains value myregistry.azurecr.io - stage: Build // defined jobs …
0
votes
1 answer

Can't access logs stream of an container from Azure Container Apps

I'am deploying an application to Azure Spring Apps via Azure CLI from a docker image which is present in the Azure Container Registry: az spring app deploy -n -s -g --container-image…
0
votes
1 answer

Auto update app in azure container apps on docker image push

I have a new app deployed to azure container apps. The image is stored also on azure container registry. What I would like, when I push a new image to lets say with develop tag, the container app recognizes that and creates a new revision. How you…
Lóri Nóda
  • 694
  • 1
  • 10
  • 20