abril/roles/k3s_server_post/tasks
Christian Berendt eddbcbfb76
k3s_server_post: add cilium_bgp_neighbors parameter (#579)
With the cilium_bgp_neighbors parameter it is possible to define
multiple BGP peer ASN & address pairs for Cilium.

Sample:

```
cilium_bgp_neighbors:
  - peer_address: 192.168.128.10
    peer_asn: 64512
  - peer_address: 192.168.128.11
    peer_asn: 64512
  - peer_address: 192.168.128.12
    peer_asn: 64512
```

It is possible to merge further lists with cilium_bgp_neighbors__*
parameters.

Sample:

```
cilium_bgp_neighbors__extra:
  - peer_address: 192.168.128.10
    peer_asn: 64512
cilium_bgp_neighbors:
  - peer_address: 192.168.128.11
    peer_asn: 64512
  - peer_address: 192.168.128.12
    peer_asn: 64512
```

This will result in the following list of BGP peer ASN & address pairs:

```
- peer_address: 192.168.128.10
  peer_asn: 64512
- peer_address: 192.168.128.11
  peer_asn: 64512
- peer_address: 192.168.128.12
  peer_asn: 64512
```

Signed-off-by: Christian Berendt <berendt@osism.tech>
2024-09-30 16:10:57 -05:00
..
calico.yml Make kubectl binary configurable with the k3s_kubectl_binary parameter (#567) 2024-08-22 17:58:15 -05:00
cilium.yml k3s_server_post: add cilium_bgp_neighbors parameter (#579) 2024-09-30 16:10:57 -05:00
main.yml Change to FQCN with ansible-lint fixer (#553) 2024-08-12 22:59:59 -05:00
metallb.yml Make kubectl binary configurable with the k3s_kubectl_binary parameter (#567) 2024-08-22 17:58:15 -05:00