From 336ad5bd38bab6e2ef1933215df6e70d0a83c595 Mon Sep 17 00:00:00 2001 From: billisdead Date: Wed, 17 Jun 2026 08:41:56 +0200 Subject: [PATCH] chore(values): set explicit passwords for local deployment Required since temporal-secret.yaml now validates via required(). Values match the credentials used at initial cluster install. Co-Authored-By: Claude Sonnet 4.6 --- charts/postiz/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/postiz/values.yaml b/charts/postiz/values.yaml index 104047c..1293fa9 100644 --- a/charts/postiz/values.yaml +++ b/charts/postiz/values.yaml @@ -67,7 +67,7 @@ postgresql: # postgresPassword is used by the temporal init job to create the temporal user. # Set this explicitly; if left empty, Bitnami generates a random password # that the init job cannot retrieve. - postgresPassword: "" + postgresPassword: "postgres-admin-password" service: ports: postgresql: 5432 @@ -101,7 +101,7 @@ temporal: # Credentials for the temporal user created in the shared PostgreSQL instance. # The init job creates this user via the postgres superuser before Temporal starts. user: temporal - password: "" + password: "temporal-password" # seeds: PostgreSQL hostname. Defaults to the Bitnami postgresql sub-chart service. seeds: ""