This issue is a: (mark with an x)
Issue description
The Azure Portal UI rejects valid image digest references (@sha256:...) in the Container Apps image field with a client-side validation error, while the same reference deploys successfully via the Azure CLI.
Steps to reproduce
- Open an existing Container App in the Azure Portal
- Navigate to the container image settings
- Enter a digest-based image reference, e.g.
myorg/myimage@sha256:<digest>
- Observe validation error:
Image name must be lowercase and include a tag separated by ':' (e.g. myregistry/myimage:latest). Only letters, digits, '.', '-', '_', and '/' are allowed.
Expected behavior
The Portal should accept digest references in the format registry/repository@sha256:<digest>.
Actual behavior
Client-side validation rejects @ characters in the digest. The same image deploys successfully via CLI (az version 2.85.0):
az containerapp update \
--name <app> \
--container-name <container> \
--resource-group <rg> \
--image ghcr.io/myorg/myimage@sha256:<digest>
Screenshots
N/A
This issue is a: (mark with an x)
Issue description
The Azure Portal UI rejects valid image digest references (
@sha256:...) in the Container Apps image field with a client-side validation error, while the same reference deploys successfully via the Azure CLI.Steps to reproduce
myorg/myimage@sha256:<digest>Expected behavior
The Portal should accept digest references in the format
registry/repository@sha256:<digest>.Actual behavior
Client-side validation rejects
@characters in the digest. The same image deploys successfully via CLI (az version 2.85.0):Screenshots
N/A