From 0184379a5b363b8cb0cbaa10d115f792cec261af Mon Sep 17 00:00:00 2001 From: homejacob Date: Thu, 2 Oct 2025 10:39:20 +0200 Subject: [PATCH] fix metallb control-plane --- helm/metallb/values.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/helm/metallb/values.yaml b/helm/metallb/values.yaml index 9521dc0..72d2726 100644 --- a/helm/metallb/values.yaml +++ b/helm/metallb/values.yaml @@ -1,3 +1,4 @@ +# Your existing configuration for the IP address pool config: config: | address-pools: @@ -6,3 +7,20 @@ config: addresses: - 192.168.178.200-192.168.178.250 +speaker: + tolerations: + - key: "node-role.kubernetes.io/control-plane" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoSchedule" + +controller: + tolerations: + - key: "node-role.kubernetes.io/control-plane" + operator: "Exists" + effect: "NoSchedule" + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoSchedule"