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

azure: auto-scalable service (RAM/CPU) for long running process

Currently we have a docker image running 24/7 on Azure Container Instance (ACI) - using the max 16GB instance. Docker image is CDC debezium-server that forwards DB changes from our on-prem DB to event-hubs. All runs fine on ACI but we are…
0
votes
1 answer

How to trigger container app for performing any long running task

I'm bit new to developing in python and using containers in azure. I want to run a simple python script for 30 mins using azure container app and I want to trigger deployment of azure container app using some other service. Is possible to trigger…
0
votes
1 answer

How to trigger a Container App from Azure Storage Queue?

I'm a bit new to developing in NodeJS and using containers. I'm developing a small application in NodeJS which listens to an Azure Storage Queue. Now I want the app to be triggered by a new message in the queue, but I have no idea how to do that.…
rjjdv
  • 339
  • 1
  • 3
  • 12
0
votes
1 answer

Container App Environment creation timing out

Where I work has just started migrating to the cloud. We've successfully deployed a number of resources using Terraform and Pipelines into Azure. Where we are running into issues is deploying a Container App Environment, we have code that was…
0
votes
1 answer

Azure ContainerApps: error parsing cpu metadata: no type given in neither trigger.metadata.type or trigger.metricType?

I been trying yo scale out replicas through cpu load in to my container... but doesn't scale... My scale rules: "scale": { "maxReplicas": 3, "minReplicas": 0, "rules": [ { "custom": { …
Alberto B
  • 18
  • 3
0
votes
1 answer

Azure Container App single hostname for replicas

I successfully created the Azure Container App named my-app-name to host the Python Flask App. The hostname for my app uses FQDN, so it looks like my-app-name.grayocean-1r2fd430h.centralus.azurecontainerapps.io. I would like the hostname to be more…
cornisto
  • 119
  • 2
  • 9
0
votes
1 answer

Deploy java apps to azure container apps

We have containerized our java application . The application has successfully been deployed on our on-prem environment on a vm. But rather than following a lift and shift approach , we plan to use azure container apps . I tried deploying the app…
0
votes
1 answer

Is it possible to clone an Azure Container App?

I do not want to define the env variables for each container app so I would prefer to clone one with the variables already set.
Trent
  • 3
  • 2
0
votes
0 answers

Azure Container Apps Dapr Output binding support for large files

I want to download large files (>300MB) from an Azure Blob Storage within an Azure Container App using the dapr output binding. This works without any issues for small file (~<100 MB) but it keeps failing for files that are larger than 300 MB. My…
Martin Brandl
  • 56,134
  • 13
  • 133
  • 172
0
votes
0 answers

Azure Container App - Liveness Probe wont give any response

I have a an API written in .net core 6 hosted in azure container apps. I've have set the liveness probe to enabled in azure and specified the endpoint to go to /health . I have the endpoint up and running and I am checking the status code and return…
0
votes
1 answer

What memory allocation size for a Linux container running a simple .Net 7 webapi hello world app?

I note that Apps declared within an Azure Container Apps environment can be configured with a memory allocation from as low as 0.1Gb up to 4 Gb and in any increment of 2 decimal places e.g. 1.25 would be 1 Gig 256Mb. I also understand that Azure…
camelCase
  • 1,549
  • 2
  • 16
  • 28
0
votes
0 answers

how to make tags work for - az containerapp compose create

az containerapp compose create --environment $env:CONTAINERAPPS_ENVIRONMENT --resource-group $env:RESOURCE_GROUP --location $env:LOCATION --registry-server ourserver.azurecr.io --registry-username username --registry-password passwordvalue ` --tags…
wallismark
  • 1,766
  • 2
  • 21
  • 35
0
votes
1 answer

Client-directed sign-in in Azure Container Apps gives me IDX10205

Background We have special needs for authentication when using Azure Container Apps as we're using an OpenID Connect provider were we have to add something to the query string for the initial redirect to the provider for the specific tenant logging…
0
votes
0 answers

Batch workload on Azure Container Apps

I'm trying to use Azure Container Apps to execute a batch workload periodically as I'm able to do using Azure Container Instance and the Start Container Group rest API (also using the --restart-policy Never). My docker image isn't an API, it's just…
0
votes
1 answer

Azure container app, how remove load balancer

I have an azure container app that I want to use as an API server, basically like I would with Azure Functions. I see a lot of reference to the fact that there shouldn't be a need for a Load Balancer, which is "expensive" if no needed. Sadly, after…
pascx64
  • 904
  • 16
  • 31