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

Dapr Exponential backoff for RETRY (AzureServiceBus)

Currently deployed services to the Azure container apps and they communicate through the azure service bus During communication, a service will send 4000 messages some messages will throw errors because of the database max connections (200) to the…
0
votes
1 answer

How to configure backend application on Container Apps

everyone. I'm currently deploying an application via Container apps on Azure. We have one environment with two container instances, backend and frontend. The backend connects with Postgres flexible server and Azure Cache for Redis. However, I always…
0
votes
0 answers

Azure Container App with public environment - how to define static FQDN URL

I can't quite find anything comprehensive on this subject so will try my luck with the community. I have a working Azure Container App working. All working fine, container is being deployed and rolled out just fine with Single Revision Mode. Every…
Yan D
  • 136
  • 2
  • 11
0
votes
1 answer

Azure Container Apps- View trace logs in AppInsights

How do i get the application trace logs deployed in Azure Container Logs to view in Application Insights? _logger.LogInformation("get ratings " ); I have tried both Instrumentation key and ConnectionString to daprAI properties with no luck. I can…
Gauls
  • 1,955
  • 6
  • 28
  • 44
0
votes
1 answer

Connecting services without Dapr

New to Container Apps. I'm trying to understand basic connectivity between services in Container Apps. Lets say I have a web front in .Net Core and an Web API backend (.Net Core). Without containerization, I could put the base address of my web api…
0
votes
2 answers

How to configure Azure ContainerApps with a Static Outbound IP?

In the documentation for Azure ContainerApps Ports and IP Addresses section it indicates that the Outbound public IP Used as the "from" IP for outbound connections that leave the virtual network. These connections aren't routed down a VPN. Using…
pseabury
  • 1,615
  • 3
  • 16
  • 30
0
votes
0 answers

Dapr pub-sub connection refused

I have an endpoint wired up to subscribe to an Azure Service Bus Topic. Something like this: [Topic("my-component", "my-topic")] [HttpPost("[action]")] public async Task> DoIt(CloudEvent cloudEvent) { ... } Sometimes, the…
spottedmahn
  • 14,823
  • 13
  • 108
  • 178
0
votes
0 answers

Git Actions successful deployment does not update the revision of an Azure Container App

I have a simple Node.js app that I intend to deploy via Github Actions continuous deployment to an Azure Container App. The image is placed in an Azure Container Registry and is tagged as "latest". My git Actions Pipeline successfully finishes…
0
votes
1 answer

Azure Container Instance Says its running Okay but the URL doesnt show my app in the browser

I'm trying to have a translator service (https://github.com/LibreTranslate/LibreTranslate) running within either azure container apps(ACA) or azure container instance(ACI). i tried within ACA but the image is too large as ACA only allows images up…
0
votes
0 answers

Connect to a SQL on VM from Azure Container Apps using Instance Name

I'm trying to connect to a SQL Server hosted on a VM from an Azure Container App. Both are on the same VNET. I get the "A network-related or instance-specific error occurred while establishing a connection to SQL Server" error when using the SQL…
Prateek
  • 1
  • 2
0
votes
1 answer

In azure container apps, does each revision save its own copy of a docker image?

Since my project is still just in development, when making my builds, I always push and replace a single docker image in ACR with the :latest tag. My app is in 'Multiple' revision mode and my build script creates a new revision based on the latest…
msmilkoff
  • 81
  • 7
0
votes
1 answer

Azure Container App ASPNETCORE_ENVIRONMENT

I have multiple microservices running as Azure Container Apps. I am a bit confused about how the ASPNETCORE_ENVIRONMENT is managed. For example, locally, I can change launchsettings.json or Windows Env variables etc... and restart the app to reflect…
user2058413
  • 691
  • 3
  • 10
  • 28
0
votes
1 answer

How to define secret once on Container Apps Environment, use in multiple Container Apps?

I am looking for a way how to define a secret once in the Container Apps Environment, so that all apps that run inside it can reference it, without having to define it in each app individually. Specifically I am looking for ways to define docker…
0
votes
1 answer

Error:ManagedEnvResourceDisallowedByPolicy,Message:Fail to create managed environment because creation of required resources was disallowed by policy

While creating Azure Container app with Networking options via Azure ARM automation script I am getting the below error: Error Details: {    "id": "/subscriptions/xxxx/resourceGroups/yyyy/providers/Microsoft.App/managedEnvironments/xxxxx",    …
santosh kumar patro
  • 7,231
  • 22
  • 71
  • 143
0
votes
0 answers

Deploying Hasura on container app with existing Postgresql Flexible Server

How can be deploy Hasura on Container App with postgresql Flexible Server using dockerfile or docker compose.
Syed
  • 11
  • 1