We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9091bd2 commit 209a8c0Copy full SHA for 209a8c0
charts/komoplane/templates/deployment.yaml
@@ -20,6 +20,9 @@ spec:
20
{{- end }}
21
labels:
22
{{- include "app.selectorLabels" . | nindent 8 }}
23
+ {{- with .Values.podLabels }}
24
+ {{- toYaml . | nindent 8 }}
25
+ {{- end }}
26
spec:
27
{{- with .Values.imagePullSecrets }}
28
imagePullSecrets:
charts/komoplane/values.yaml
@@ -45,11 +45,19 @@ updateStrategy:
45
type: RollingUpdate
46
47
48
+podLabels: {}
49
podAnnotations: {}
50
-podSecurityContext: {}
51
+podSecurityContext:
52
+ fsGroup: 2000
53
-securityContext: {}
54
+securityContext:
55
+ readOnlyRootFilesystem: true
56
+ runAsNonRoot: true
57
+ runAsUser: 1000
58
+ capabilities:
59
+ drop:
60
+ - ALL
61
62
service:
63
type: ClusterIP
0 commit comments