Support metallb peer password (#8792)

* support metallb peer password

* add MetalLB BGP password example
This commit is contained in:
Oogy
2022-05-12 00:39:15 -04:00
committed by GitHub
parent f26f544ff6
commit 5684610a55
2 changed files with 16 additions and 0 deletions

View File

@@ -12,6 +12,9 @@ data:
- peer-address: {{ peer.peer_address }}
peer-asn: {{ peer.peer_asn }}
my-asn: {{ peer.my_asn }}
{% if peer.password is defined %}
password: "{{ peer.password }}"
{% endif %}
{% if peer.source_address is defined %}
source-address: {{ peer.source_address }}
{% endif %}