2021-01-09 17:54:42 +00:00
|
|
|
strict_arp_for_metallb: true
|
|
|
|
metallb_default_values: {}
|
2022-07-12 13:48:14 +00:00
|
|
|
|
|
|
|
metallb_pool_name: "default"
|
|
|
|
metallb_namespace: "metallb-system"
|
|
|
|
metallb_bgp_advertisement_name: "local"
|
|
|
|
metallb_bgp_aggregation_length: 32
|
|
|
|
metallb_bgp_localpref: 100
|
|
|
|
metallb_bgp_peer_name: "bgppeer"
|
|
|
|
metallb_bgp_peer_port: 179
|
|
|
|
metallb_l2_advertisement_name: "local"
|
|
|
|
|
|
|
|
metallb_bgp_definitions:
|
|
|
|
metallb_address_pool: |
|
|
|
|
apiVersion: metallb.io/v1beta1
|
|
|
|
kind: IPAddressPool
|
|
|
|
metadata:
|
|
|
|
name: "{{ metallb_pool_name }}"
|
|
|
|
namespace: "{{ metallb_namespace }}"
|
|
|
|
spec:
|
|
|
|
addresses: {{ metallb_address_pool }}
|
|
|
|
|
|
|
|
metallb_bgp_advertisement: |
|
|
|
|
apiVersion: metallb.io/v1beta1
|
|
|
|
kind: BGPAdvertisement
|
|
|
|
metadata:
|
|
|
|
name: "{{ metallb_bgp_advertisement_name }}"
|
|
|
|
namespace: "{{ metallb_namespace }}"
|
|
|
|
spec:
|
|
|
|
ipAddressPools:
|
|
|
|
- "{{ metallb_pool_name }}"
|
|
|
|
aggregationLength: {{ metallb_bgp_aggregation_length }}
|
|
|
|
localpref: {{ metallb_bgp_localpref }}
|
2023-03-05 19:24:26 +00:00
|
|
|
nodeSelectors:
|
|
|
|
- matchExpressions:
|
|
|
|
- key: node-role.kubernetes.io/control-plane
|
|
|
|
operator: DoesNotExist
|
2022-07-12 13:48:14 +00:00
|
|
|
|
|
|
|
metallb_peer: |
|
|
|
|
apiVersion: metallb.io/v1beta2
|
|
|
|
kind: BGPPeer
|
|
|
|
metadata:
|
|
|
|
name: "{{ metallb_bgp_peer_name }}"
|
|
|
|
namespace: "{{ metallb_namespace }}"
|
|
|
|
spec:
|
|
|
|
myASN: {{ metallb_bgp_my_asn }}
|
|
|
|
peerASN: {{ metallb_bgp_peer_asn }}
|
|
|
|
peerAddress: {{ metallb_bgp_peer_address }}
|
|
|
|
peerPort: {{ metallb_bgp_peer_port }}
|
|
|
|
|
|
|
|
metallb_l2_definitions:
|
|
|
|
metallb_address_pool: |
|
|
|
|
apiVersion: metallb.io/v1beta1
|
|
|
|
kind: IPAddressPool
|
|
|
|
metadata:
|
|
|
|
name: "{{ metallb_pool_name }}"
|
|
|
|
namespace: "{{ metallb_namespace }}"
|
|
|
|
spec:
|
|
|
|
addresses: "{{ metallb_address_pool }}"
|
|
|
|
|
|
|
|
metallb_l2_advertisement: |
|
|
|
|
apiVersion: metallb.io/v1beta1
|
|
|
|
kind: L2Advertisement
|
|
|
|
metadata:
|
|
|
|
name: "{{ metallb_l2_advertisement_name }}"
|
|
|
|
namespace: "{{ metallb_namespace }}"
|
|
|
|
spec:
|
|
|
|
ipAddressPools:
|
|
|
|
- "{{ metallb_pool_name }}"
|
2023-03-05 19:24:26 +00:00
|
|
|
nodeSelectors:
|
|
|
|
- matchExpressions:
|
|
|
|
- key: node-role.kubernetes.io/control-plane
|
|
|
|
operator: DoesNotExist
|