We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6f3f54 + 7aab7e1 commit ae822d2Copy full SHA for ae822d2
misc/helm-charts/operator/templates/deployment.yaml
@@ -25,6 +25,10 @@ spec:
25
labels:
26
{{- include "materialize-operator.selectorLabels" . | nindent 8 }}
27
spec:
28
+ securityContext:
29
+ fsGroup: 999
30
+ runAsGroup: 999
31
+ runAsUser: 999
32
serviceAccountName: {{ include "materialize-operator.serviceAccountName" . }}
33
{{- if .Values.operator.nodeSelector }}
34
nodeSelector:
@@ -229,3 +233,12 @@ spec:
229
233
{{- end }}
230
234
resources:
231
235
{{- toYaml .Values.operator.resources | nindent 10 }}
236
237
+ allowPrivilegeEscalation: false
238
+ capabilities:
239
+ drop:
240
+ - ALL
241
+ privileged: false
242
+ runAsNonRoot: true
243
+ seccompProfile:
244
+ type: RuntimeDefault
0 commit comments