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

How to host mongo db as azure container app?

Could someone please help me with working example? As far as I understand its ingress of TCP transport has to be enabled on container environment level. Thanks in advance
Edward
  • 169
  • 2
  • 7
1
vote
1 answer

Azure Container App and OpenId Challenge not redirecting to https

I'm trying to setup a Blazor Server on Azure Container App. I have setup the container with ingress on HTTP port 80, added a custom domain name with managed certificate. Everything is working fine except the OpenID connection. The redirect URI is…
Thibaud
  • 377
  • 1
  • 2
  • 15
1
vote
1 answer

Terraform property for specifying the plan in Azure Container Apps Environment

How to specify plan type = Consumption and Dedicated workload profiles for Azure Container Apps Environment using terraform 3.49.0. I am using below snippet: # main.tf resource "azurerm_container_app_environment" "aca_env" { for_each = { for…
Rajesh Swarnkar
  • 601
  • 1
  • 6
  • 18
1
vote
2 answers

Why do I get 'sentinel key is not provided in metadata' error when using Azure App Configuration as dapr config store component?

I have a question concerning the dapr config store component. I'm trying to use the config store component in an Azure container app. I have it configured in a bicep file like so: resource daprConfigComponent…
Blit
  • 55
  • 6
1
vote
0 answers

Communication between two Azure Container Apps Environments using Dapr

I'm developing a PoC solution for migration from Docker-base App Services to Azure Container Apps. The app is geographically distributed. There are two kinds of app deployments: regional (multiple regions with the same bunch of microservices) and…
Wojteq
  • 1,173
  • 9
  • 23
1
vote
1 answer

Cannot deploy an Azure container app created via Terraform with VS2022

I created with Terrafrom the following Azure resources: A docker container registry A User-managed identity A log analytics workspace A Container app environment A container app I also createad manually a second container app that is inside the…
Simone
  • 2,304
  • 6
  • 30
  • 79
1
vote
2 answers

How to integrate Docker Hub with Azure Container Apps using Azure DevOps Pipeline

While learning Azure I have decided to move my personal website from some other VPS provider to Azure. I have chosen Azure Container Apps as it is serverless solution with some free resources per month. Because traffic on my website is not high it…
1
vote
1 answer

Configure Timezone in Azure Container App (Linux)

Does anyone know how to configure the timezone in an azure container app? I've tried setting it through terminal which works temporarily using the commands: - cd /usr/share/zoneinfo - tzselect But then I need to update the .profile file but need…
Lewis
  • 566
  • 4
  • 21
1
vote
0 answers

Where is a container's ServicePort defined when publishing a container from Visual Studio 2022?

I have published a Linux container to an Azure Container App using the publishing UI embedded within Visual Studio 2022. This seems to work and a new container image is uploaded into my Azure container registry and then loaded into the Azure…
camelCase
  • 1,549
  • 2
  • 16
  • 28
1
vote
1 answer

Generate/retrieve a SAS token programmatically for specific Blob/File under azure storage account via REST API in POSTMAN and then in IBM APP Connect

I have requirement where it has to be done programmatically using POSTMAN REST API, where I have to upload a file/blob to Azure storage account and retrieve the unique URL of the specific file that I have uploaded, and I have to share that URL to…
1
vote
1 answer

Azure: The specified container does not exist, Dapr with ContainerApps

I'm using Dapr Azure Blob Storage binding to set up a file store here are the biceps storage-account.bicep @description('The location in which the Azure Storage resources should be deployed.') param location string @description('The name of the…
1
vote
0 answers

Schedule task in Azure to request Container App

I have a Container App in Azure cloud which hosts an API. My goal is to execute a task which sends some specific requests to this API and sends e-mail with results. I want to run it twice a day. Let's say it's a single Python script task.py What…
1
vote
2 answers

Azure container app cannot pull image from azure container registry which are present in different subscriptions

my scenario is like I have shared container registry in one subscription say subscription A, I need to pull image from ACR to ACA through DevOps pipelines. The ACAs are present for each environment like dev, test, UAT & etc which is in another…
1
vote
0 answers

secrets client of azure sdk for go returns empty secret even if rbac is set correctly (managed identity)

the response of the Get fkt of the secrets client from go azure sdk ("github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault") returns an valid instance of resp of type SecretsClientGetResponse, but the property…
1
vote
1 answer

Migrate from Azure Function app to Azure Container app

I have asp.net core REST API interacting with Azure Queue with input data. I have a Azure Function App with trigger on Azure Queue service. Whenever any entry that happens at the Azure Queue level, Azure Function app gets triggered which executes…
santosh kumar patro
  • 7,231
  • 22
  • 71
  • 143
1 2
3
12 13