fix metallb control-plane

This commit is contained in:
2025-10-02 10:41:19 +02:00
parent 0184379a5b
commit faaeb217bf

View File

@@ -1,5 +1,8 @@
# Your existing configuration for the IP address pool # This top-level key MUST match the dependency name in your Chart.yaml
config: metallb:
# Your original address pool configuration, now nested
config:
config: | config: |
address-pools: address-pools:
- name: default - name: default
@@ -7,7 +10,8 @@ config:
addresses: addresses:
- 192.168.178.200-192.168.178.250 - 192.168.178.200-192.168.178.250
speaker: # The speaker tolerations, also nested
speaker:
tolerations: tolerations:
- key: "node-role.kubernetes.io/control-plane" - key: "node-role.kubernetes.io/control-plane"
operator: "Exists" operator: "Exists"
@@ -16,7 +20,8 @@ speaker:
operator: "Exists" operator: "Exists"
effect: "NoSchedule" effect: "NoSchedule"
controller: # The controller tolerations, also nested
controller:
tolerations: tolerations:
- key: "node-role.kubernetes.io/control-plane" - key: "node-role.kubernetes.io/control-plane"
operator: "Exists" operator: "Exists"