File tree 3 files changed +8
-0
lines changed
helm/charts/hydra-maester
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ A Helm chart for Kubernetes
20
20
| deployment.automountServiceAccountToken | bool | ` true ` | This applications connects to the k8s API and requires the permissions |
21
21
| deployment.dnsConfig | object | ` {} ` | Configure pod dnsConfig. |
22
22
| deployment.extraAnnotations | object | ` {} ` | Deployment level extra annotations |
23
+ | deployment.extraEnv | list | ` [] ` | Extra environment variables |
23
24
| deployment.extraLabels | object | ` {} ` | Deployment level extra labels |
24
25
| deployment.extraVolumeMounts | list | ` [] ` | |
25
26
| deployment.extraVolumes | list | ` [] ` | If you want to mount external volume |
Original file line number Diff line number Diff line change 80
80
{{- if .Values.deployment.extraVolumeMounts }}
81
81
{{- toYaml .Values.deployment.extraVolumeMounts | nindent 12 }}
82
82
{{- end }}
83
+ {{- if .Values.deployment.extraEnv }}
84
+ env :
85
+ {{- tpl (toYaml .Values.deployment.extraEnv) . | nindent 12 }}
86
+ {{- end }}
83
87
resources :
84
88
{{- toYaml .Values.deployment.resources | nindent 12 }}
85
89
terminationMessagePath : /dev/termination-log
Original file line number Diff line number Diff line change @@ -56,6 +56,9 @@ deployment:
56
56
# cpu: 100m
57
57
# memory: 20Mi
58
58
59
+ # -- To set extra env vars for the container.
60
+ extraEnv : []
61
+
59
62
# -- If you want to mount external volume
60
63
extraVolumes : []
61
64
# - name: my-volume
You can’t perform that action at this time.
0 commit comments