We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I guess the imagePullSecrets in the Helm chart are not working.
imagePullSecrets
I think there are two issues:
object
array
Fix for values.schema.json
values.schema.json
... "imagePullSecrets": { "type": "array" `},` ...
Fix for values.yaml
values.yaml
... imagePullSecrets: [] ...
imagePullSecret
deployment.yaml
Fix for deployment.yaml
... securityContext: runAsUser: {{ .Values.pod.user.id }} runAsGroup: {{ .Values.pod.group.id }} {{- with .Values.podSecurityContext }} {{- . | toYaml | nindent 8 }} {{- end }} {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} containers: ...
Maybe there is also another solution to fix this, but this is how I got it working locally.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I guess the
imagePullSecrets
in the Helm chart are not working.I think there are two issues:
object
, it has to bearray
.Fix for
values.schema.json
Fix for
values.yaml
imagePullSecret
property in thedeployment.yaml
is off.Fix for
deployment.yaml
Maybe there is also another solution to fix this, but this is how I got it working locally.
The text was updated successfully, but these errors were encountered: