Closed
Description
Currently the imagePullSecret
values are handle different between ServiceAccount
and Deployment
resources. This, in turn, prevents us from properly configuring secrets to pull from private registries.
deployment config:
{{- if not (empty .Values.image.pullSecrets) }}
imagePullSecrets:
{{ toYaml .Values.image.pullSecrets | indent 8 }}
{{- end }}
service account config:
{{- if .Values.autoscaler.image.pullSecrets }}
imagePullSecrets:
{{- range .Values.autoscaler.image.pullSecrets }}
- name: {{ . }}
{{- end }}
{{- end }}
Metadata
Metadata
Assignees
Labels
No labels