[stolon/stable] fixed image pull secrets (#20161)

* [stable/stolon] add image.pullSecrets

Signed-off-by: Roland Gritzer <gritzer.roland@gmail.com>

* bumped chart version

Signed-off-by: Roland Gritzer <gritzer.roland@gmail.com>

* fixed image.pullSecrets

Signed-off-by: Roland Gritzer <gritzer.roland@gmail.com>
This commit is contained in:
rolandg
2020-01-15 04:45:32 -08:00
committed by Kubernetes Prow Robot
parent dfb0e2dd7a
commit d9d7fcb43a
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: stolon
version: 1.5.5
version: 1.5.6
appVersion: 0.13.0
description: Stolon - PostgreSQL cloud native High Availability.
home: https://github.com/sorintlab/stolon
@@ -36,9 +36,9 @@ spec:
securityContext:
fsGroup: {{ .Values.keeper.fsGroup }}
{{- end }}
{{- if .Values.image.imagePullSecrets }}
{{- if .Values.image.pullSecrets }}
imagePullSecrets:
{{ toYaml .values.image.pullSecrets | indent 8 }}
{{ toYaml .Values.image.pullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
@@ -30,9 +30,9 @@ spec:
priorityClassName: "{{ .Values.proxy.priorityClassName }}"
{{- end }}
serviceAccountName: {{ template "stolon.serviceAccountName" . }}
{{- if .Values.image.imagePullSecrets }}
{{- if .Values.image.pullSecrets }}
imagePullSecrets:
{{ toYaml .values.image.pullSecrets | indent 8 }}
{{ toYaml .Values.image.pullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
@@ -31,7 +31,7 @@ spec:
priorityClassName: "{{ .Values.sentinel.priorityClassName }}"
{{- end }}
serviceAccountName: {{ template "stolon.serviceAccountName" . }}
{{- if .Values.image.imagePullSecrets }}
{{- if .Values.image.pullSecrets }}
imagePullSecrets:
{{ toYaml .Values.image.pullSecrets | indent 8 }}
{{- end }}