From b6abcbe116e03c2d2849042eae88952cde2d9df5 Mon Sep 17 00:00:00 2001 From: Vlad Kyrylenko <39014816+vlkyrylenko@users.noreply.github.com> Date: Tue, 7 Oct 2025 03:31:32 -0400 Subject: [PATCH] Update kubectl command for creating secrets (#36328) Change dry-run option to use 'client' in kubectl command since --dry-run is deprecated. Signed-off-by: Vlad Kyrylenko <39014816+vlkyrylenko@users.noreply.github.com> --- bitnami/postgresql/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/postgresql/README.md b/bitnami/postgresql/README.md index 045e4100da..64fd480b88 100644 --- a/bitnami/postgresql/README.md +++ b/bitnami/postgresql/README.md @@ -137,7 +137,7 @@ Bitnami charts, with its default settings, configure credentials at first boot. - Update the password secret with the new values (replace the SECRET_NAME, PASSWORD and POSTGRES_PASSWORD placeholders) ```shell -kubectl create secret generic SECRET_NAME --from-literal=password=PASSWORD --from-literal=postgres-password=POSTGRES_PASSWORD --dry-run -o yaml | kubectl apply -f - +kubectl create secret generic SECRET_NAME --from-literal=password=PASSWORD --from-literal=postgres-password=POSTGRES_PASSWORD --dry-run=client -o yaml | kubectl apply -f - ``` ### Automated update using a password update job