You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ACR docker credential helper is an alternative to the existing file store based ACR helper
located here which relies on az command
line and is not optimised for use in CI environments. Primary use case for this helper is for use
with kaniko and other tools running in CI scenarios wishing to push to Azure Container Registry
How it works
The credential helper sources its configuration from well-known Azure environmental information.
It attempts to authenticate firstly via client credentials grant if the following environment config is present
If the details needed for the client credential grant are not set it will try to
find a federated OIDC JWT
in the enviroment. To use this set the following values in the enviroment.
If you use federated OIDC with Azure Workload Identity you don't
have to set any ENVs as they will get injected automatically.
If the above are not set then authentication falls back to managed service identities and the MSI endpoint is
attempted to be contacted which will work in various Azure contexts such as App Service and Azure Kubernetes Service
where the MSI endpoint will authenticate the MSI context the service is running under.