Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/keycloak] Specify which keys must the secret have for jks in values.yaml comments #29301

Merged
Merged
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
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

## 22.2.1 (2024-08-26)
## 22.2.2 (2024-09-09)

* [bitnami/keycloak] fix: :bug: Add emptyDir at /bitnami to allow init scripts ([#29020](https://github.com/bitnami/charts/pull/29020))
* [bitnami/keycloak] Specify which keys must the secret have for jks in values.yaml comments ([#29301](https://github.com/bitnami/charts/pull/29301))

## <small>22.2.1 (2024-08-26)</small>

* [bitnami/keycloak] fix: :bug: Add emptyDir at /bitnami to allow init scripts (#29020) ([3d04a65](https://github.com/bitnami/charts/commit/3d04a655e59ce25587d84b1a2a44844dfcf19de3)), closes [#29020](https://github.com/bitnami/charts/issues/29020)

## 22.2.0 (2024-08-26)

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: 22.2.1
version: 22.2.2
4 changes: 3 additions & 1 deletion bitnami/keycloak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ tls:
##
existingSecret: ""
## @param tls.usePem Use PEM certificates as input instead of PKS12/JKS stores
## If "true", the Keycloak chart will look for the files keycloak.key and keycloak.crt inside the secret provided with 'existingSecret'.
## If "true", the Keycloak chart will look for the files tls.key and tls.crt inside the secret provided with 'existingSecret'.
##
usePem: false
## @param tls.truststoreFilename Truststore filename inside the existing secret
Expand All @@ -182,6 +182,7 @@ tls:
##
truststorePassword: ""
## @param tls.passwordsSecret Secret containing the Keystore and Truststore passwords.
## The secret must have "tls-keystore-password" and "tls-truststore-password" keys for the keystore and truststore respectively.
##
passwordsSecret: ""
## SPI TLS settings
Expand All @@ -202,6 +203,7 @@ spi:
##
truststoreFilename: "keycloak-spi.truststore.jks"
## @param spi.passwordsSecret Secret containing the SPI Truststore passwords.
## The secret must have "spi-truststore-password" key.
##
passwordsSecret: ""
## @param spi.hostnameVerificationPolicy Verify the hostname of the server's certificate. Allowed values: "ANY", "WILDCARD", "STRICT".
Expand Down
Loading