Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions bitnami/keycloak/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Changelog

## 25.2.5 (2025-10-09)
## 25.2.6 (2025-10-16)

* [bitnami/keycloak] Fix: Rename duplicated secret labels ([#36254](https://github.com/bitnami/charts/pull/36254))
* change hostname settings ([#36340](https://github.com/bitnami/charts/pull/36340))

## <small>25.2.4 (2025-09-23)</small>
## <small>25.2.5 (2025-10-08)</small>

* [bitnami/keycloak] Fix indentation in ingress TLS secret template ([#36282](https://github.com/bitnami/charts/pull/36282))
* [bitnami/keycloak] Fix: Rename duplicated secret labels (#36254) ([9b3915b](https://github.com/bitnami/charts/commit/9b3915b649a9b08fbfad1fa82cc24e48232edd36)), closes [#36254](https://github.com/bitnami/charts/issues/36254)

## <small>25.2.4 (2025-10-02)</small>

* [bitnami/keycloak] Fix indentation in ingress TLS secret template (#36282) ([3f7fa45](https://github.com/bitnami/charts/commit/3f7fa45393366ca67af940efa64acfab89c05e75)), closes [#36282](https://github.com/bitnami/charts/issues/36282)

## <small>25.2.3 (2025-09-11)</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 @@ -35,4 +35,4 @@ maintainers:
name: keycloak
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/keycloak
version: 25.2.5
version: 25.2.6
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 @@ -31,7 +31,7 @@ data:
{{- end }}
{{- if .Values.ingress.enabled }}
KC_HOSTNAME_STRICT: {{ ternary "true" "false" .Values.hostnameStrict | quote }}
{{- if .Values.ingress.hostname }}
{{- if and .Values.ingress.hostname (eq .Values.hostnameStrict true) }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding the "eq true" condition is a bit redundant. Can you review this change?

Suggested change
{{- if and .Values.ingress.hostname (eq .Values.hostnameStrict true) }}
{{- if and .Values.ingress.hostname .Values.hostnameStrict }}

{{- $path := tpl .Values.ingress.path . }}
{{- if and (eq .Values.ingress.controller "gce") (hasSuffix "*" $path) }}
{{- $path = trimSuffix "*" $path }}
Expand Down
Loading