File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
33## [ master] ( https://github.com/arangodb/kube-arangodb/tree/master ) (N/A)
4+ - (Feature) Allow configuration for securityContext.runAsUser value
45
56## [ 1.2.9] ( https://github.com/arangodb/kube-arangodb/tree/1.2.9 ) (2022-03-30)
67- (Feature) Improve Kubernetes clientsets management
Original file line number Diff line number Diff line change @@ -139,6 +139,12 @@ tolerations:
139139` ` `
140140Default (empty): ` []`
141141
142+ # ## `operator.securityContext.runAsUser`
143+
144+ Controls which user ID the containers are run with.
145+
146+ Default : ` 1000`
147+
142148# ## `operator.replicaCount`
143149
144150Replication count for Operator deployment.
Original file line number Diff line number Diff line change 8686 hostIPC : false
8787 securityContext :
8888 runAsNonRoot : true
89- runAsUser : 1000
89+ runAsUser : {{ .Values.operator.securityContext.runAsUser }}
9090 containers :
9191 - name : operator
9292 imagePullPolicy : {{ .Values.operator.imagePullPolicy }}
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ operator:
2727 cpu : 250m
2828 memory : 256Mi
2929
30+ securityContext :
31+ runAsUser : 1000
32+
3033 replicaCount : 2
3134
3235 updateStrategy :
You can’t perform that action at this time.
0 commit comments