From 6ec297f6c23ee13a2e2539ab50e1c4801c3a3307 Mon Sep 17 00:00:00 2001 From: OpenCode Test Date: Wed, 24 Dec 2025 11:06:08 -0800 Subject: [PATCH] Relax default scheduling affinity --- helm/porthole/values.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/helm/porthole/values.yaml b/helm/porthole/values.yaml index 57126b0..ad42620 100644 --- a/helm/porthole/values.yaml +++ b/helm/porthole/values.yaml @@ -17,9 +17,11 @@ scheduling: compute: affinity: nodeAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: + # Prefer compute nodes when they exist, but don't require them. + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + preference: + matchExpressions: - key: node-class operator: In values: