From 7a59e61fd444407f34828f6a8bdcb7fe962c57f6 Mon Sep 17 00:00:00 2001 From: IvanHunters Date: Wed, 1 Apr 2026 12:45:26 +0300 Subject: [PATCH] feat(postgres): extend v17 hardcode to Harbor and SeaweedFS Add explicit PostgreSQL 17.7 image to Harbor and SeaweedFS databases to ensure consistent version across system components. Signed-off-by: IvanHunters --- packages/system/dashboard/templates/gatekeeper.yaml | 2 +- packages/system/harbor/templates/database.yaml | 1 + packages/system/seaweedfs/templates/database.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/system/dashboard/templates/gatekeeper.yaml b/packages/system/dashboard/templates/gatekeeper.yaml index f7b1c7f7..6537d7ed 100644 --- a/packages/system/dashboard/templates/gatekeeper.yaml +++ b/packages/system/dashboard/templates/gatekeeper.yaml @@ -75,7 +75,7 @@ spec: - --cookie-secure=true - --cookie-secret=$(OAUTH2_PROXY_COOKIE_SECRET) - --skip-provider-button - - --scope=openid email profile offline_access + - --scope=openid email profile offline_access kubernetes-client {{- if eq $oidcInsecureSkipVerify "true" }} - --ssl-insecure-skip-verify=true {{- end }} diff --git a/packages/system/harbor/templates/database.yaml b/packages/system/harbor/templates/database.yaml index b1221e1c..02e11faa 100644 --- a/packages/system/harbor/templates/database.yaml +++ b/packages/system/harbor/templates/database.yaml @@ -5,6 +5,7 @@ metadata: name: {{ .Values.harbor.fullnameOverride }}-db spec: instances: {{ .Values.db.replicas }} + imageName: ghcr.io/cloudnative-pg/postgresql:17.7 storage: size: {{ .Values.db.size }} {{- with .Values.db.storageClass }} diff --git a/packages/system/seaweedfs/templates/database.yaml b/packages/system/seaweedfs/templates/database.yaml index e78caa89..1c116dd0 100644 --- a/packages/system/seaweedfs/templates/database.yaml +++ b/packages/system/seaweedfs/templates/database.yaml @@ -5,6 +5,7 @@ metadata: name: seaweedfs-db spec: instances: {{ .Values.db.replicas }} + imageName: ghcr.io/cloudnative-pg/postgresql:17.7 storage: size: {{ .Values.db.size }} {{- with .Values.db.storageClass }}