- If the issue is to do with Azure CLI 2.0 in-particular, create an issue here at Azure/azure-cli
Related command
Deploy the simple example ContainerApps demo container following https://docs.microsoft.com/en-us/azure/container-apps/get-started?tabs=bash
RESOURCE_GROUP="my-container-apps"
LOCATION="canadacentral"
CONTAINERAPPS_ENVIRONMENT="my-environment"
az group create \
--name $RESOURCE_GROUP \
--location $LOCATION
az containerapp env create \
--name $CONTAINERAPPS_ENVIRONMENT \
--resource-group $RESOURCE_GROUP \
--location $LOCATION
az containerapp create \
--name my-container-app \
--resource-group $RESOURCE_GROUP \
--environment $CONTAINERAPPS_ENVIRONMENT \
--image mcr.microsoft.com/azuredocs/containerapps-helloworld:latest \
--target-port 80 \
--ingress 'external' \
--query properties.configuration.ingress.fqdn
Extension name (the extension in question)
containerapp version 0.3.9
Description of issue (in as much detail as possible)
When an image is referenced from an unauthenticated public endpoint, an error is thrown specifying that a username and password are required.
Related command
Deploy the simple example ContainerApps demo container following https://docs.microsoft.com/en-us/azure/container-apps/get-started?tabs=bash
Extension name (the extension in question)
containerapp version 0.3.9
Description of issue (in as much detail as possible)
When an image is referenced from an unauthenticated public endpoint, an error is thrown specifying that a username and password are required.