mirror of
https://github.com/bitnami/charts.git
synced 2026-04-01 06:47:23 +08:00
[bitnami/keycloak] fix Keycloak HTTP schema for edge proxy mode (#27436)
* fix Keycloak schema for edge proxy mode Signed-off-by: Baljit Singh <baljit.singh@verizon.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: Baljit Singh <baljit.singh@verizon.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -1,8 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 21.4.3 (2024-06-18)
|
## 21.4.4 (2024-06-18)
|
||||||
|
|
||||||
* [bitnami/keycloak] Release 21.4.3 ([#27361](https://github.com/bitnami/charts/pull/27361))
|
* [bitnami/keycloak] fix Keycloak HTTP schema for edge proxy mode ([#27436](https://github.com/bitnami/charts/pull/27436))
|
||||||
|
|
||||||
|
## <small>21.4.3 (2024-06-18)</small>
|
||||||
|
|
||||||
|
* [bitnami/keycloak] Release 21.4.3 (#27361) ([31f011c](https://github.com/bitnami/charts/commit/31f011cb89e56bd33db8e51a9e42f7cc533dcc14)), closes [#27361](https://github.com/bitnami/charts/issues/27361)
|
||||||
|
|
||||||
## <small>21.4.2 (2024-06-17)</small>
|
## <small>21.4.2 (2024-06-17)</small>
|
||||||
|
|
||||||
|
|||||||
@@ -33,4 +33,4 @@ maintainers:
|
|||||||
name: keycloak
|
name: keycloak
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
|
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
|
||||||
version: 21.4.3
|
version: 21.4.4
|
||||||
|
|||||||
@@ -214,11 +214,11 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.adminIngress.enabled }}
|
{{- if .Values.adminIngress.enabled }}
|
||||||
- name: KC_HOSTNAME_ADMIN_URL
|
- name: KC_HOSTNAME_ADMIN_URL
|
||||||
value: "http{{ if .Values.adminIngress.tls }}s{{ end }}://{{ include "common.tplvalues.render" (dict "value" .Values.adminIngress.hostname "context" $) }}"
|
value: "http{{ if or .Values.adminIngress.tls (eq .Values.proxy "edge") }}s{{ end }}://{{ include "common.tplvalues.render" (dict "value" .Values.adminIngress.hostname "context" $) }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if and .Values.adminIngress.enabled (not .Values.ingress.enabled) }}
|
{{- if and .Values.adminIngress.enabled (not .Values.ingress.enabled) }}
|
||||||
- name: KC_HOSTNAME_URL
|
- name: KC_HOSTNAME_URL
|
||||||
value: "http{{ if .Values.adminIngress.tls }}s{{ end }}://{{ include "common.tplvalues.render" (dict "value" .Values.adminIngress.hostname "context" $) }}"
|
value: "http{{ if or .Values.adminIngress.tls (eq .Values.proxy "edge") }}s{{ end }}://{{ include "common.tplvalues.render" (dict "value" .Values.adminIngress.hostname "context" $) }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.extraEnvVars }}
|
{{- if .Values.extraEnvVars }}
|
||||||
{{- include "common.tplvalues.render" (dict "value" .Values.extraEnvVars "context" $) | nindent 12 }}
|
{{- include "common.tplvalues.render" (dict "value" .Values.extraEnvVars "context" $) | nindent 12 }}
|
||||||
|
|||||||
Reference in New Issue
Block a user