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.
1 parent f42572d commit 7aab7e1Copy full SHA for 7aab7e1
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:
@@ -226,3 +230,12 @@ spec:
226
230
{{- end }}
227
231
resources:
228
232
{{- toYaml .Values.operator.resources | nindent 10 }}
233
234
+ allowPrivilegeEscalation: false
235
+ capabilities:
236
+ drop:
237
+ - ALL
238
+ privileged: false
239
+ runAsNonRoot: true
240
+ seccompProfile:
241
+ type: RuntimeDefault
0 commit comments