* Update jenkins.yaml fix https://github.com/jenkinsci/kubernetes-operator/issues/674 * Fix nindent to be 4
This commit is contained in:
parent
7e94bc623f
commit
e2f19454b1
|
|
@ -106,9 +106,6 @@ spec:
|
|||
- name: jenkins-master
|
||||
image: {{ .Values.jenkins.image }}
|
||||
imagePullPolicy: {{ .Values.jenkins.imagePullPolicy }}
|
||||
{{- with .Values.jenkins.imagePullSecrets }}
|
||||
imagePullSecrets: {{ toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- with .Values.jenkins.livenessProbe }}
|
||||
livenessProbe: {{ toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
|
|
@ -141,6 +138,9 @@ spec:
|
|||
{{- with .Values.jenkins.volumes }}
|
||||
volumes: {{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.jenkins.imagePullSecrets }}
|
||||
imagePullSecrets: {{ toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.jenkins.securityContext}}
|
||||
securityContext:
|
||||
{{- toYaml . | nindent 6 }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue