helm chart improvements #425
2 changed files with 8 additions and 5 deletions
|
@ -41,6 +41,8 @@ spec:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: {{ include "garage.rpcSecretName" . }}
|
name: {{ include "garage.rpcSecretName" . }}
|
||||||
key: rpcSecret
|
key: rpcSecret
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: configmap
|
- name: configmap
|
||||||
mountPath: /mnt/garage.toml
|
mountPath: /mnt/garage.toml
|
||||||
|
|
|
@ -92,8 +92,11 @@ serviceAccount:
|
||||||
|
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
||||||
podSecurityContext: {}
|
podSecurityContext:
|
||||||
# fsGroup: 2000
|
runAsUser: 1000
|
||||||
|
runAsGroup: 1000
|
||||||
|
fsGroup: 1000
|
||||||
|
runAsNonRoot: true
|
||||||
|
|
||||||
securityContext:
|
securityContext:
|
||||||
# The default security context is heavily restricted
|
# The default security context is heavily restricted
|
||||||
|
@ -102,8 +105,6 @@ securityContext:
|
||||||
drop:
|
drop:
|
||||||
- ALL
|
- ALL
|
||||||
readOnlyRootFilesystem: true
|
readOnlyRootFilesystem: true
|
||||||
runAsNonRoot: true
|
|
||||||
runAsUser: 1000
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
# You can rely on any service to expose your cluster
|
# You can rely on any service to expose your cluster
|
||||||
|
|
Loading…
Reference in a new issue