[stable/neo4j] Add support for imagePullSecrets (#4454)

* Add support for imagePullSecret

* Bumping minor version

* lower case imagePullSecret
This commit is contained in:
Ole Markus With
2018-03-27 14:45:13 -07:00
committed by k8s-ci-robot
parent fa884bc4ae
commit c9c99aaaab
4 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: neo4j
home: https://www.neo4j.com
version: 0.5.1
version: 0.6.0
appVersion: 3.2.3
description: Neo4j is the world's leading graph database
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
@@ -85,6 +85,10 @@ spec:
{{- if .Values.core.sidecarContainers }}
{{ toYaml .Values.core.sidecarContainers | indent 6}}
{{- end }}
{{- if .Values.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.imagePullSecret }}
{{- end -}}
{{- if .Values.core.initContainers }}
initContainers:
{{ toYaml .Values.core.initContainers | indent 6}}
@@ -73,3 +73,7 @@ spec:
volumes:
- name: plugins
emptyDir: {}
{{- if .Values.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.imagePullSecret }}
{{- end -}}
+1
View File
@@ -9,6 +9,7 @@ name: "neo4j"
image: "neo4j"
imageTag: "3.2.3-enterprise"
imagePullPolicy: "IfNotPresent"
# imagePullSecret: registry-secret
# Use password authentication
authEnabled: true