From e0803d1597dac7b5f13f8aa6aebf3a1c1f3f4158 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Thu, 8 Jan 2026 13:18:14 +0900 Subject: [PATCH] FIX(pgweb): fix Helm chart schema validation - Change replicaCount to replicas - Move affinity to pod.affinity - Fix bjw-s/app-template chart schema compliance --- pgweb/helm-values.yaml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/pgweb/helm-values.yaml b/pgweb/helm-values.yaml index f2bc689..a26714a 100644 --- a/pgweb/helm-values.yaml +++ b/pgweb/helm-values.yaml @@ -3,7 +3,7 @@ controllers: main: - replicaCount: 2 + replicas: 2 annotations: reloader.stakater.com/auto: "true" containers: @@ -44,15 +44,16 @@ controllers: initialDelaySeconds: 5 periodSeconds: 5 # Affinity - Soft Anti-Affinity to spread pods across nodes - affinity: - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - weight: 100 - podAffinityTerm: - labelSelector: - matchLabels: - app.kubernetes.io/name: pgweb - topologyKey: kubernetes.io/hostname + pod: + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: pgweb + topologyKey: kubernetes.io/hostname service: main: