mirror of
https://github.com/techno-tim/k3s-ansible.git
synced 2025-12-25 10:12:38 +01:00
k3s_server: add kube-vip BGP support (#554)
With the kube_vip_bgp parameter it is possible to enable the kube-vip BGP support (https://kube-vip.io/docs/modes/bgp/). The configuration is possible with the following new parameters: * kube_vip_bgp_routerid * kube_vip_bgp_as * kube_vip_bgp_peeraddress * kube_vip_bgp_peeras Signed-off-by: Christian Berendt <berendt@osism.tech>
This commit is contained in:
committed by
GitHub
parent
2d0596209e
commit
2149827800
@@ -27,10 +27,31 @@ argument_specs:
|
||||
default: master
|
||||
|
||||
kube_vip_arp:
|
||||
description: Enables ARP broadcasts from Leader
|
||||
description: Enables kube-vip ARP broadcasts
|
||||
default: true
|
||||
type: bool
|
||||
|
||||
kube_vip_bgp:
|
||||
description: Enables kube-vip BGP peering
|
||||
default: false
|
||||
type: bool
|
||||
|
||||
kube_vip_bgp_routerid:
|
||||
description: Defines the router ID for the kube-vip BGP server
|
||||
default: "127.0.0.1"
|
||||
|
||||
kube_vip_bgp_as:
|
||||
description: Defines the AS for the kube-vip BGP server
|
||||
default: "64513"
|
||||
|
||||
kube_vip_bgp_peeraddress:
|
||||
description: Defines the address for the kube-vip BGP peer
|
||||
default: "192.168.30.1"
|
||||
|
||||
kube_vip_bgp_peeras:
|
||||
description: Defines the AS for the kube-vip BGP peer
|
||||
default: "64512"
|
||||
|
||||
kube_vip_iface:
|
||||
description:
|
||||
- Explicitly define an interface that ALL control nodes
|
||||
|
||||
Reference in New Issue
Block a user