File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : common
33description : A library chart for common templates and helper functions
44type : library
5- version : 1.1.0
5+ version : 1.1.1
66appVersion : " 1.0.0"
77
88home : https://www.cloudpirates.io
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ kind: StatefulSet
1717spec :
1818 template :
1919 spec :
20- securityContext : {{ include "common.renderPodSecurityContext" . }}
20+ securityContext : {{ include "common.renderPodSecurityContext" . | nindent 8 }}
2121 containers :
2222 - name : {{ .Chart.Name }}
23- securityContext : {{ include "common.renderContainerSecurityContext" . }}
23+ securityContext : {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
2424` ` `
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ Usage: {{ include "common.renderPodSecurityContext" . }}
270270{ {- if eq $isOpenshift " true" } }
271271{ {- omit .Values.podSecurityContext " runAsUser" " runAsGroup" " fsGroup" " seLinuxOptions" | toYaml } }
272272{ {- else } }
273- { {- toYaml .Values.podSecurityContext | nindent 8 } }
273+ { {- toYaml .Values.podSecurityContext } }
274274{ {- end } }
275275{ {- end } }
276276
@@ -283,6 +283,6 @@ Usage: {{ include "common.renderContainerSecurityContext" . }}
283283{ {- if eq $isOpenshift " true" } }
284284{ {- omit .Values.containerSecurityContext " runAsUser" " runAsGroup" " seLinuxOptions" | toYaml } }
285285{ {- else } }
286- { {- toYaml .Values.containerSecurityContext | nindent 12 } }
286+ { {- toYaml .Values.containerSecurityContext } }
287287{ {- end } }
288288{ {- end } }
You can’t perform that action at this time.
0 commit comments