Skip to content

docker-registry

To add a docker-registry secret add the following to values.yaml:

imageCredentials:
  - name: acr-registry
    namespace: mywebapplication
    registry: https://ohmyhelm.azure.com
    username: "012345-678901-23456789-0090-22222"
    accessToken: "thisIsMySecretToken-DONTSHAREIT"

You can add multiple values too.

imageCredentials:
  - name: acr-registry
    namespace: mywebapplication
    registry: https://ohmyhelm.azure.com
    username: "012345-678901-23456789-0090-22222"
    accessToken: "thisIsMySecretToken-DONTSHAREIT"
  - name: docker-registry
    namespace: mywebapplication
    registry: https://index.docker.io/v1/
    username: "yourUsername"
    accessToken: "yourPassword-or-Token-here"