From a9efcf96bc2e1cd28f4111f3f1c9464a5fe634da Mon Sep 17 00:00:00 2001 From: Lucas Fernando Cardoso Nunes Date: Mon, 20 May 2024 06:13:16 -0300 Subject: [PATCH] Update README.md (#25996) Signed-off-by: Lucas Fernando Cardoso Nunes Signed-off-by: Fran Mulero --- bitnami/keycloak/README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/bitnami/keycloak/README.md b/bitnami/keycloak/README.md index 84a7bbc362d1f4..85a3438f9a9977 100644 --- a/bitnami/keycloak/README.md +++ b/bitnami/keycloak/README.md @@ -152,13 +152,15 @@ adminIngress: enabled: true hostname: keycloak-admin.example.com keycloakConfigCli: - configuration: | - { - "realm" : "master", - "attributes": { - "frontendUrl": "https://keycloak-admin.example.com" + enabled: true + configuration: + master.json: | + { + "realm" : "master", + "attributes": { + "frontendUrl": "https://keycloak-admin.example.com" + } } - } ``` ### Configure TLS Secrets for use with Ingress @@ -207,12 +209,11 @@ If your ingress controller has the SSL Termination, you should set `proxy` to `e This chart provides several ways to manage passwords: -- Values passed to the chart: In this scenario, a new secret including all the passwords will be created during the chart installation. When upgrading, it is necessary to provide the secrets to the chart as shown below. Replace the KEYCLOAK_ADMIN_PASSWORD, KEYCLOAK_MANAGEMENT_PASSWORD, POSTGRESQL_PASSWORD and POSTGRESQL_PVC placeholders with the correct passwords and PVC name. +- Values passed to the chart: In this scenario, a new secret including all the passwords will be created during the chart installation. When upgrading, it is necessary to provide the secrets to the chart as shown below. Replace the KEYCLOAK_ADMIN_PASSWORD, POSTGRESQL_PASSWORD and POSTGRESQL_PVC placeholders with the correct passwords and PVC name. ```console helm upgrade keycloak bitnami/keycloak \ --set auth.adminPassword=KEYCLOAK_ADMIN_PASSWORD \ - --set auth.managementPassword=KEYCLOAK_MANAGEMENT_PASSWORD \ --set postgresql.postgresqlPassword=POSTGRESQL_PASSWORD \ --set postgresql.persistence.existingClaim=POSTGRESQL_PVC ``` @@ -796,4 +797,4 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License.