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

Azure Container Apps and Windows containers

I have a ASP.NET MVC .NET Framework 4.8 project and I want to containerize and deploy to Azure. It will have to be a Windows container (not Linux) because of the framework. Is that possible to deploy a Windows OS container to Azure Container Apps?…
user1044169
  • 2,686
  • 6
  • 35
  • 64
1
vote
0 answers

Configure WCF service in Azure Container Apps

I'm trying to deploy a WCF service implemented using CoreWCF + .NET 6 to Azure Container Apps exposing https endpoints from a linux container. I try the same service using http protocol and everything work correctly. I also expose a gRPC service,…
Akite
  • 11
  • 2
1
vote
1 answer

Deploy Azure Container App to different Resource Group in Azure pipeline

I´m playing around with Azure Container Apps, but I'm running into a small issue when trying to deploy through Azure Pipelines, the thing is that I have one Azure Container Registry and I want to create a new Revision for ca-sandbox-1 and…
1
vote
0 answers

how to Dockerize Python FastAPI uvicorn application and deploy to container app

Azure Devblogs as referred in above document, I'm trying to dockerize the above application and want to push to Azure container app GitHub repo used This is my Dockerfile: FROM python:3.9 #FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 WORKDIR…
1
vote
0 answers

Collect /metrics Prometheus in Azure Container Apps

I'm starting with Azure Container Apps, and I have a question: All my applications issue a /metrics endpoint that my Prometheus server consumes. I configured it for 5 instances of container apps. Soon I will have 5 applications running in…
Igorep
  • 19
  • 3
1
vote
0 answers

Creating Containerized Applications on Azure with a VNet

I have a set of containerized http services that I wrote, the services are configured using a docker-compose.yml and a collection of Dockerfiles to build the service images. I would like to be able to host my docker-compose.yml setup on Azure,…
1
vote
1 answer

How do I configure my bicep scripts to allow a container app to pull an image from an ACR using managed identity across subscriptions

I am trialling the use of Bicep and container apps in my organisation and we have separated out concerns within the SAME tenant but in different subscriptions like so: Development Production Management I want to be able to deploy each of these…
1
vote
1 answer

How to delete a revision in Azure Container Apps?

Is there a way to delete a revision on Azure Container Apps? Scenario I have an Azure Container App instance for testing puposes which I regularly push new revisions to using the az containerapp update command in my CI/ CD pipeline whenever I merge…
Mushroomator
  • 6,516
  • 1
  • 10
  • 27
1
vote
1 answer

TCP client doesn't receive error connecting on non listening port

I have an Azure Container App running and is listening on a public TCP port 8000 (via the load balancer) for incoming connections. When incoming connections are arriving, I serve them with data and everything goes as expected. My problem is when I…
1
vote
1 answer

Specify Revision weight for Azure Container Apps App during deployment

right now i work on a pipeline to deploy our microservices to an azure-container-apps environment. The deployment is done via azure-pipelines, since we use a TFS on prem i need to deploy new versions in a pipeline step with azure cli. For that i use…
Isparia
  • 682
  • 5
  • 20
1
vote
0 answers

How to setup AzureDevops Selfhosted agents in Azure ContainerAppservice?

We are using Azuredevops server and looking for a way to run our self hosted Build agents in Azure ContainerAPP service as this will support KEDA. But looking in Microsoft documents, there is no guidance to create it and couldnt find any good…
1
vote
2 answers

Trying to build container app from ACR throwing unauthorized error

Have a question on Azure need to deploy an azure container app by pulling the image from azure container registry from AZ Steps: 1- az login -successful 2- az acr login appdev - successful 3- az containerapp create --name apptest --resource-group…
1
vote
1 answer

How to access site from Private Container Apps accessed via VPN gateway - Azure

I created a private container apps where I would like to access its web site via vpn gateway. The private container apps is into the VNET, specific of RG where contains a NSG (default configuration). Also, I created and configured the private DNS…
Kadu
  • 343
  • 7
  • 17
1
vote
2 answers

Azure Container Apps environment creation fails due to error ManagedEnvironmentResourceGroupDisallowedByPolicy when adding a VNET integration

I'm trying to create an Azure Container Apps Environment through the AzAPI provider on Terraform. The configuration I'm using is the following: resource "azapi_resource" "aca_env" { type = "Microsoft.App/managedEnvironments@2022-03-01" …
g00glen00b
  • 41,995
  • 13
  • 95
  • 133
1
vote
1 answer

Azure Static Outbound Private IP

I've the following scenario: There's a VNET which has a few services (Azure Container Apps + Azure Functions) which are internal services (do not acccept any external traffic). This VNET is connected to On-Prem using ExpressRoute. There's a service…
macpak
  • 1,190
  • 1
  • 14
  • 28