File tree Expand file tree Collapse file tree 6 files changed +23
-9
lines changed Expand file tree Collapse file tree 6 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ dependencies:
4
4
version: 1.0.0
5
5
- name: postgres
6
6
repository: oci://registry-1.docker.io/cloudpirates
7
- version: 0.3.0
7
+ version: 0.5.2
8
8
- name: mariadb
9
9
repository: oci://registry-1.docker.io/cloudpirates
10
10
version: 0.2.7
11
- digest: sha256:bccee500d13542983b6457429aaf672ad1459d3dfd0dd5638ce5a1e126f19de6
12
- generated: "2025-09-16T14:57:21.446014 +02:00"
11
+ digest: sha256:58c0f4427699c161ee51d1b1f92323b1ec6ac3f9bcf29ab4df842e12a614c7da
12
+ generated: "2025-09-25T11:46:09.5087928 +02:00"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : keycloak
3
3
description : Open Source Identity and Access Management Solution
4
4
type : application
5
- version : 0.1.4
5
+ version : 0.1.5
6
6
appVersion : " 26.3.4"
7
7
keywords :
8
8
- keycloak
Original file line number Diff line number Diff line change @@ -240,9 +240,10 @@ The following table lists the configurable parameters of the Keycloak chart and
240
240
241
241
### Extra Environment
242
242
243
- | Parameter | Description | Default |
244
- | ---------- | ----------------------------------------------------- | ------- |
245
- | ` extraEnv ` | Additional environment variables from key-value pairs | ` {} ` |
243
+ | Parameter | Description | Default |
244
+ | ---------- | ------------------------------------------------------------------------| ----- |
245
+ | ` extraEnv ` | Additional environment variables from key-value pairs | ` {} ` |
246
+ | ` extraEnvVarsSecret ` | Name of an existing secret containing additional environment variables | `` |
246
247
247
248
### Extra Configuration Parameters
248
249
Original file line number Diff line number Diff line change @@ -141,6 +141,11 @@ spec:
141
141
- name : {{ $key }}
142
142
value : {{ $value | quote }}
143
143
{{- end }}
144
+ {{- if .Values.extraEnvVarsSecret }}
145
+ envFrom :
146
+ - secretRef :
147
+ name : {{ .Values.extraEnvVarsSecret }}
148
+ {{- end }}
144
149
ports :
145
150
- name : http
146
151
containerPort : {{ .Values.keycloak.httpPort }}
@@ -233,4 +238,4 @@ spec:
233
238
{{- with .Values.tolerations }}
234
239
tolerations :
235
240
{{- toYaml . | nindent 8 }}
236
- {{- end }}
241
+ {{- end }}
Original file line number Diff line number Diff line change 544
544
"type" : " object" ,
545
545
"description" : " Additional environment variables from key-value pairs"
546
546
},
547
+ "extraEnvVarsSecret" : {
548
+ "type" : " string" ,
549
+ "title" : " Extra Environment Secret" ,
550
+ "description" : " Name of an existing Secret containing additional environment variables"
551
+ },
547
552
"extraObjects" : {
548
553
"type" : " array" ,
549
554
"title" : " Extra Objects" ,
633
638
}
634
639
}
635
640
}
636
- }
641
+ }
Original file line number Diff line number Diff line change @@ -266,6 +266,9 @@ extraEnv: {}
266
266
# VARNAME1: value1
267
267
# VARNAME2: value2
268
268
269
+ # # @param extraEnvVarsSecret Name of a secret containing additional environment variables
270
+ extraEnvVarsSecret : " "
271
+
269
272
# # @param extraObjects Array of extra objects to deploy with the release
270
273
extraObjects : []
271
274
You can’t perform that action at this time.
0 commit comments