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

Configure dapr log level in Azure Container App

How do I configure the Dapr log level in an Azure Container App? It defaults to info & I want to set it to debug. Reference: Configure and view Dapr Logs
spottedmahn
  • 14,823
  • 13
  • 108
  • 178
0
votes
1 answer

how to change Docker server host configuration from Linux to Windows?

I am new to Docker and I am trying to setup and build docker image on my local Windows 10 machine. I created a simple .Net program and added Docker support to it. I also installed Docker Desktop on my machine. When I load my project with VS.Net…
Alexu
  • 1,015
  • 2
  • 12
  • 32
0
votes
1 answer

Using a python package stored in private Git Repo for Azure Functions and Container Apps?

I have a python package in a private GitHub Repo. While using it locally I use pip install git+https://git@github.com/org-name/package-name.git in the bash to install the package. I want to use that package in my azure functions and container apps.…
Rebe
  • 37
  • 2
  • 12
0
votes
2 answers

Can the Azure container apps from 0 to more like azure functions?

I have recently started exploring azure container apps as a microservice. I have kept the minimum number of replicas to be 0 and maximum to be 10. I am using a queue trigger input binding, that whenever a message comes in the queue it is…
Rebe
  • 37
  • 2
  • 12
0
votes
1 answer

Azure Container Apps with Dapr state store failing

I am using Azure Container apps with Azure Blob Store as a state store. It is a simple Hello World (weather service) app using dotnet 6. App starts up fine, on Post I am trying to save the generated weather information to Azure Blob Store as JSON.…
Vijay aravind
  • 183
  • 3
  • 14
0
votes
2 answers

how to set an environment variable when run - az container app compose create

It seems when my docker compose yml is run via "az containerapp compose create", environment variables are not picked up. Is there a way I can set an env variable so the command picks it up? I'm seeing this error: ERROR: The following field(s) are…
wallismark
  • 1,766
  • 2
  • 21
  • 35
0
votes
1 answer

Hadoop Azure: Issue when authenticating storage account using MSI in App Service Plan (Azure Functions)

This is similar to what has been discussed here: https://www.mail-archive.com/user@hadoop.apache.org/msg24204.html The MSI endpoint that the hadoop-azure client expects (I think) is applicable only for VM's and not for functions. So, I retrieved the…
Jatin
  • 31,116
  • 15
  • 98
  • 163
0
votes
3 answers

How to reference secrets in Azure Container Apps?

I've created a secret for my Azure Container App by adding the secret from the portal. But how do I reference it inside my code, such as for a database connection string? The section on using secrets says only: Application secrets are referenced…
Glenn Scott
  • 405
  • 4
  • 13
0
votes
1 answer

Unable to mount a volume in Azure Container App

I have been trying to build and deploy a Docker image of the nopCommerce website to the new-ish Azure Container Apps service. I have had some success in building the container in Azure DevOps to an Azure container registry, starting the container…
spadeki
  • 3
  • 3
0
votes
1 answer

azure container app does not update when updating it using cli

I have an azure container app running an aspdotnet core 6 webapi. I try to update it using azure cli and get a successful response but the update actual does not happen. I even try to redeploy the container again using the cli but does not work.…
0
votes
1 answer

How do I read env-vars from Azure container app

How can I get the --env-vars in my app inside the container app? az containerapp create \ --resource-group "my-resource-group" \ --name myQueueApp \ --environment "my-environment-name" \ --image demos/myQueueApp:v1 \ --secrets…
thiago.adriano26
  • 1,491
  • 3
  • 14
  • 19
0
votes
1 answer

enable dapr gRPC leads to 503 errors

I enabled the gRPC protocol on one of my container apps & now service invocation is failing. I'm guessing I'm missing another step? ‍♂️ az containerapp dapr enable --name blah --resource-group blah …
spottedmahn
  • 14,823
  • 13
  • 108
  • 178
0
votes
1 answer

Deploy To Azure Container Apps is Missing from Publish Targets in VS2022

I'm following the deployment tutorial for a simple BackgroundService I created with Docker Support Enabled, but when I get to the Section entitled "Create the Resources", I do not have the proper publish targets available. The tutorial shows many…
pseabury
  • 1,615
  • 3
  • 16
  • 30
0
votes
1 answer

SharePoint online file sync to Azure blob storage with logic app getting error for .mp4 files

I have created an Azure Logic app that replicates the file structure in Azure blob storage. It works fine until I add a folder and files under the folder in SharePoint. When I try to read the contents through "Get file content", I get the error…
0
votes
1 answer

How to secure the connection between dapr sidecar and application if the microservice is deployed in Azure container app

I have deployed my microservices in Azure container app. I'm using dapr. I would like to know how to secure the communication between the dapr sidecar and the application if the microservice is deployed in Azure Container App? Thanks
1 2 3
12
13