Skip to content

Commit

Permalink
[bitnami/keycloak] Fix quotes for handling KC_PROXY_HEADER when optio…
Browse files Browse the repository at this point in the history
…ns is set to passthrough (#31459)
  • Loading branch information
robson90 authored Jan 20, 2025
1 parent 2dac33a commit cd8d753
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions bitnami/keycloak/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 24.4.4 (2025-01-15)
## 24.4.5 (2025-01-17)

* [bitnami/keycloak] Release 24.4.4 ([#31380](https://github.com/bitnami/charts/pull/31380))
* [bitnami/keycloak] Fix quotes for handling KC_PROXY_HEADER when options is set to passthrough ([#31459](https://github.com/bitnami/charts/pull/31459))

## <small>24.4.4 (2025-01-15)</small>

* [bitnami/keycloak] Release 24.4.4 (#31380) ([820f59b](https://github.com/bitnami/charts/commit/820f59b6f9be409f7c9f0a3881975f451fe49174)), closes [#31380](https://github.com/bitnami/charts/issues/31380)

## <small>24.4.3 (2025-01-14)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/keycloak/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ maintainers:
name: keycloak
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
version: 24.4.4
version: 24.4.5
2 changes: 1 addition & 1 deletion bitnami/keycloak/templates/configmap-env-vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data:
KC_BOOTSTRAP_ADMIN_USERNAME: {{ .Values.auth.adminUser | quote }}
KEYCLOAK_HTTP_PORT: {{ .Values.containerPorts.http | quote }}
{{- if and .Values.proxy (empty .Values.proxyHeaders) }}
KEYCLOAK_PROXY_HEADERS: {{ ternary "" "xforwarded" (eq .Values.proxy "passthrough") }}
KEYCLOAK_PROXY_HEADERS: {{ ternary "" "xforwarded" (eq .Values.proxy "passthrough") | quote }}
{{- else }}
KEYCLOAK_PROXY_HEADERS: {{ .Values.proxyHeaders | quote }}
{{- end }}
Expand Down

0 comments on commit cd8d753

Please sign in to comment.