From 1b7a4294dcd69eef3c91f411e6ca19e6474fdd29 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Thu, 8 Jan 2026 13:01:29 +0900 Subject: [PATCH] FIX(goldilocks): merge duplicate dashboard sections - Merge dashboard.affinity into dashboard section - Fix YAML structure to prevent OutOfSync status --- goldilocks/helm-values.yaml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/goldilocks/helm-values.yaml b/goldilocks/helm-values.yaml index 5718862..f40ef3b 100644 --- a/goldilocks/helm-values.yaml +++ b/goldilocks/helm-values.yaml @@ -32,6 +32,17 @@ dashboard: - secretName: goldilocks-dashboard-tls hosts: - goldilocks0213.kro.kr + + # Affinity - Soft Anti-Affinity to spread pods across nodes + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: goldilocks + topologyKey: kubernetes.io/hostname # Controller configuration controller: @@ -52,15 +63,3 @@ controller: vpa: # Set to false since we're installing VPA separately enabled: false - -# Affinity - Soft Anti-Affinity to spread pods across nodes -dashboard: - affinity: - podAntiAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - weight: 100 - podAffinityTerm: - labelSelector: - matchLabels: - app.kubernetes.io/name: goldilocks - topologyKey: kubernetes.io/hostname