File tree 6 files changed +26
-1
lines changed
6 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: zitadel
3
3
description : A Helm chart for ZITADEL
4
4
type : application
5
5
appVersion : v2.61.0
6
- version : 8.4.1
6
+ version : 8.5.0
7
7
kubeVersion : " >= 1.21.0-0"
8
8
icon : https://zitadel.com/zitadel-logo-dark.svg
9
9
maintainers :
Original file line number Diff line number Diff line change 60
60
{{- with .Values.env }}
61
61
{{- toYaml . | nindent 12 }}
62
62
{{- end }}
63
+ {{- if .Values.envVarsSecret }}
64
+ envFrom :
65
+ - secretRef :
66
+ name : {{ .Values.envVarsSecret }}
67
+ {{- end }}
63
68
volumeMounts :
64
69
- name : zitadel-config-yaml
65
70
mountPath : /config
Original file line number Diff line number Diff line change 94
94
{{- with .Values.env }}
95
95
{{- toYaml . | nindent 12 }}
96
96
{{- end }}
97
+ {{- if .Values.envVarsSecret }}
98
+ envFrom :
99
+ - secretRef :
100
+ name : {{ .Values.envVarsSecret }}
101
+ {{- end }}
97
102
ports :
98
103
- containerPort : 8080
99
104
name : {{ .Values.service.protocol }}-server
Original file line number Diff line number Diff line change 88
88
{{- with .Values.env }}
89
89
{{- toYaml . | nindent 12 }}
90
90
{{- end }}
91
+ {{- if .Values.envVarsSecret }}
92
+ envFrom :
93
+ - secretRef :
94
+ name : {{ .Values.envVarsSecret }}
95
+ {{- end }}
91
96
volumeMounts :
92
97
- name : zitadel-config-yaml
93
98
mountPath : /config
Original file line number Diff line number Diff line change 92
92
{{- with .Values.env }}
93
93
{{- toYaml . | nindent 12 }}
94
94
{{- end }}
95
+ {{- if .Values.envVarsSecret }}
96
+ envFrom :
97
+ - secretRef :
98
+ name : {{ .Values.envVarsSecret }}
99
+ {{- end }}
95
100
volumeMounts :
96
101
- name : zitadel-config-yaml
97
102
mountPath : /config
Original file line number Diff line number Diff line change @@ -132,6 +132,11 @@ env:
132
132
# name: postgres-pguser-postgres
133
133
# key: host
134
134
135
+ # Additional environment variables from the given secret name
136
+ # Zitadel can be configured using environment variables from a secret.
137
+ # Reference: https://zitadel.com/docs/self-hosting/manage/configure#configure-by-environment-variables
138
+ envVarsSecret : " "
139
+
135
140
service :
136
141
type : ClusterIP
137
142
# If service type is "ClusterIP", this can optionally be set to a fixed IP address.
You can’t perform that action at this time.
0 commit comments