feat(helm): add image pull secret for private registries
This commit is contained in:
parent
38c28dc73f
commit
4187512f88
6 changed files with 26 additions and 4 deletions
|
|
@ -12,6 +12,10 @@ spec:
|
|||
activeDeadlineSeconds: 120 # 2 minutes
|
||||
template:
|
||||
spec:
|
||||
{{- if .Values.dockerconfigjsonBase64 }}
|
||||
imagePullSecrets:
|
||||
- name: {{ .Release.Name }}-container-registry
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}-seed
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||
|
|
|
|||
Reference in a new issue