-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
k3s_server_post: add cilium_bgp_neighbors parameter
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 <[email protected]>
- Loading branch information
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters