Open
Description
Hi,
I guess the imagePullSecrets
in the Helm chart are not working.
I think there are two issues:
- The type is currently
object
, it has to bearray
.
Fix for values.schema.json
...
"imagePullSecrets": {
"type": "array"
`},`
...
Fix for values.yaml
...
imagePullSecrets: []
...
- The indentation of the
imagePullSecret
property in thedeployment.yaml
is off.
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.
Metadata
Assignees
Labels
No labels
Activity