From d29651af7aab2862111331eec94330eed756780d Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 18:35:15 +0900 Subject: [PATCH] REFACTOR(repo): remove control-plane scheduling - Remove nodeSelector for control-plane node - Remove tolerations for control-plane taint - Allow pods to schedule on any available node --- authelia/helm-values.yaml | 4 ---- falco/helm-values.yaml | 8 -------- vault/helm-values.yaml | 6 ------ 3 files changed, 18 deletions(-) diff --git a/authelia/helm-values.yaml b/authelia/helm-values.yaml index e63a606..6510963 100644 --- a/authelia/helm-values.yaml +++ b/authelia/helm-values.yaml @@ -8,10 +8,6 @@ ingress: # Pod configuration pod: kind: DaemonSet - tolerations: - - key: node-role.kubernetes.io/control-plane - operator: Exists - effect: NoSchedule resources: requests: cpu: 15m diff --git a/falco/helm-values.yaml b/falco/helm-values.yaml index d32c8e0..3690e58 100644 --- a/falco/helm-values.yaml +++ b/falco/helm-values.yaml @@ -174,14 +174,6 @@ serviceAccount: create: true name: falco -# Node selector to run on all nodes -nodeSelector: {} - -# Tolerations to run on all nodes including control-plane -tolerations: - - effect: NoSchedule - key: node-role.kubernetes.io/control-plane - # Run as DaemonSet on all nodes daemonset: updateStrategy: diff --git a/vault/helm-values.yaml b/vault/helm-values.yaml index aebc82a..5dd0d0a 100644 --- a/vault/helm-values.yaml +++ b/vault/helm-values.yaml @@ -72,12 +72,6 @@ server: type: ClusterIP port: 8200 - # Tolerations for control-plane node (keep for 3-replica HA) - tolerations: - - key: "node-role.kubernetes.io/control-plane" - operator: "Exists" - effect: "NoSchedule" - # High priority for critical secrets management priorityClassName: high-priority