Problem
The Helm chart does not attach imagePullSecrets to the ServiceAccounts created for
the OMJob operator and omjob-operator deployment, making it impossible to pull images from
private registries.
Solution
Add to values.yaml in chart:
omjobOperator:
...
# Image pull secrets for private registries
imagePullSecrets: []
# - name: my-registry-secret
Add to omjob-operator-rbac.yaml and omjob-operator-deployment.yaml
{{- if .Values.omjobOperator.imagePullSecrets }}
imagePullSecrets:
{{- toYaml .Values.omjobOperator.imagePullSecrets | nindent n }}
{{- end }}```
Problem
The Helm chart does not attach
imagePullSecretsto the ServiceAccounts created forthe OMJob operator and omjob-operator deployment, making it impossible to pull images from
private registries.
Solution
Add to values.yaml in chart:
Add to omjob-operator-rbac.yaml and omjob-operator-deployment.yaml