/
Company image registry
Company image registry
This page contains information about configuring your own image registry. You can specify the URL from which the docker images can be pulled for installation:
global:
# when images are to be pulled from the companies image registry, specify its url here, otherwise leave blank
imageRegistry:
# The names of the secrets containing the credentials of the image registry, if a private image registry (non-ECR) is used
imagePullSecrets: []
Authentication with PullSecrets
To authenticate with your registry, you need to create a ImagePullSecret with kubectl and then specify the name of the secret in our values.yaml file.
Please follow this guide: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
After you created the secret, you will need to specify the secrets name in our values file like this:
imagePullSecrets: ["name-of-the-secret"]