2025-10-02 10:41:19 +02:00
|
|
|
# This top-level key MUST match the dependency name in your Chart.yaml
|
|
|
|
|
metallb:
|
2025-10-02 10:28:43 +02:00
|
|
|
|
2025-10-02 10:41:19 +02:00
|
|
|
# Your original address pool configuration, now nested
|
|
|
|
|
config:
|
|
|
|
|
config: |
|
|
|
|
|
address-pools:
|
|
|
|
|
- name: default
|
|
|
|
|
protocol: layer2
|
|
|
|
|
addresses:
|
|
|
|
|
- 192.168.178.200-192.168.178.250
|
2025-10-02 10:39:20 +02:00
|
|
|
|
2025-10-02 10:41:19 +02:00
|
|
|
# The speaker tolerations, also nested
|
|
|
|
|
speaker:
|
|
|
|
|
tolerations:
|
|
|
|
|
- key: "node-role.kubernetes.io/control-plane"
|
|
|
|
|
operator: "Exists"
|
|
|
|
|
effect: "NoSchedule"
|
|
|
|
|
- key: "node-role.kubernetes.io/master"
|
|
|
|
|
operator: "Exists"
|
|
|
|
|
effect: "NoSchedule"
|
|
|
|
|
|
|
|
|
|
# The controller tolerations, also nested
|
|
|
|
|
controller:
|
|
|
|
|
tolerations:
|
|
|
|
|
- key: "node-role.kubernetes.io/control-plane"
|
|
|
|
|
operator: "Exists"
|
|
|
|
|
effect: "NoSchedule"
|
|
|
|
|
- key: "node-role.kubernetes.io/master"
|
|
|
|
|
operator: "Exists"
|
|
|
|
|
effect: "NoSchedule"
|