We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83795c0 + 6bcccd0 commit b3c5683Copy full SHA for b3c5683
helm-charts/secrets-operator/templates/deployment.yaml
@@ -34,6 +34,9 @@ spec:
34
env:
35
- name: KUBERNETES_CLUSTER_DOMAIN
36
value: {{ quote .Values.kubernetesClusterDomain }}
37
+ {{- with .Values.controllerManager.manager.extraEnv }}
38
+ {{- toYaml . | nindent 8 }}
39
+ {{- end }}
40
image: {{ .Values.controllerManager.manager.image.repository }}:{{ .Values.controllerManager.manager.image.tag
41
| default .Chart.AppVersion }}
42
livenessProbe:
helm-charts/secrets-operator/values.yaml
@@ -26,6 +26,8 @@ controllerManager:
26
requests:
27
cpu: 10m
28
memory: 64Mi
29
+ # -- Extra environment variables to add to the manager container
30
+ extraEnv: []
31
podSecurityContext:
32
runAsNonRoot: true
33
seccompProfile:
0 commit comments