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
2
2
name : common
3
3
description : A library chart for common templates and helper functions
4
4
type : library
5
- version : 1.1.0
5
+ version : 1.1.1
6
6
appVersion : " 1.0.0"
7
7
8
8
home : https://www.cloudpirates.io
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ kind: StatefulSet
17
17
spec :
18
18
template :
19
19
spec :
20
- securityContext : {{ include "common.renderPodSecurityContext" . }}
20
+ securityContext : {{ include "common.renderPodSecurityContext" . | nindent 8 }}
21
21
containers :
22
22
- name : {{ .Chart.Name }}
23
- securityContext : {{ include "common.renderContainerSecurityContext" . }}
23
+ securityContext : {{ include "common.renderContainerSecurityContext" . | nindent 12 }}
24
24
` ` `
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ Usage: {{ include "common.renderPodSecurityContext" . }}
270
270
{ {- if eq $isOpenshift " true" } }
271
271
{ {- omit .Values.podSecurityContext " runAsUser" " runAsGroup" " fsGroup" " seLinuxOptions" | toYaml } }
272
272
{ {- else } }
273
- { {- toYaml .Values.podSecurityContext | nindent 8 } }
273
+ { {- toYaml .Values.podSecurityContext } }
274
274
{ {- end } }
275
275
{ {- end } }
276
276
@@ -283,6 +283,6 @@ Usage: {{ include "common.renderContainerSecurityContext" . }}
283
283
{ {- if eq $isOpenshift " true" } }
284
284
{ {- omit .Values.containerSecurityContext " runAsUser" " runAsGroup" " seLinuxOptions" | toYaml } }
285
285
{ {- else } }
286
- { {- toYaml .Values.containerSecurityContext | nindent 12 } }
286
+ { {- toYaml .Values.containerSecurityContext } }
287
287
{ {- end } }
288
288
{ {- end } }
You can’t perform that action at this time.
0 commit comments