From fd2a941dd884fb53e01c59308ad379a60ecf79f6 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Tue, 21 Apr 2026 07:22:41 -0400 Subject: [PATCH] fix(infra): skip database creation in Temporal auto-setup CNPG already creates the temporal and temporal_visibility databases via postInitSQL. The auto-setup container doesn't have CREATEDB privilege, so set SKIP_DB_CREATE=true to skip that step. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/cli/infra/k8s/temporal.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/cli/infra/k8s/temporal.yaml b/apps/cli/infra/k8s/temporal.yaml index 500521e..56ea1bc 100644 --- a/apps/cli/infra/k8s/temporal.yaml +++ b/apps/cli/infra/k8s/temporal.yaml @@ -65,6 +65,8 @@ spec: key: password - name: NUM_HISTORY_SHARDS value: "4" + - name: SKIP_DB_CREATE + value: "true" readinessProbe: tcpSocket: port: 7233