mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-05 02:31:07 -03:30
add metallb_namespace default value (#12860)
This commit is contained in:
@@ -21,6 +21,12 @@ metallb_enabled: true
|
|||||||
metallb_speaker_enabled: true
|
metallb_speaker_enabled: true
|
||||||
```
|
```
|
||||||
|
|
||||||
|
By default, MetalLB resources are deployed into the `metallb-system` namespace. You can override this namespace using a variable.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
metallb_namespace: woodenlb-system
|
||||||
|
```
|
||||||
|
|
||||||
By default only the MetalLB BGP speaker is allowed to run on control plane nodes. If you have a single node cluster or a cluster where control plane are also worker nodes you may need to enable tolerations for the MetalLB controller:
|
By default only the MetalLB BGP speaker is allowed to run on control plane nodes. If you have a single node cluster or a cluster where control plane are also worker nodes you may need to enable tolerations for the MetalLB controller:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
metallb_enabled: false
|
metallb_enabled: false
|
||||||
metallb_log_level: info
|
metallb_log_level: info
|
||||||
|
metallb_namespace: "metallb-system"
|
||||||
metallb_port: "7472"
|
metallb_port: "7472"
|
||||||
metallb_memberlist_port: "7946"
|
metallb_memberlist_port: "7946"
|
||||||
metallb_speaker_enabled: "{{ metallb_enabled }}"
|
metallb_speaker_enabled: "{{ metallb_enabled }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user