Skip to content
Snippets Groups Projects
Unverified Commit 1d635e04 authored by Tony Fouchard's avatar Tony Fouchard Committed by GitHub
Browse files

Allow to specify a source address for metallb peerings, and target only some...

Allow to specify a source address for metallb peerings, and target only some nodes using node selectors (#8534)
parent 98d5d0cd
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,13 @@ data:
- peer-address: {{ peer.peer_address }}
peer-asn: {{ peer.peer_asn }}
my-asn: {{ peer.my_asn }}
{% if peer.source_address is defined %}
source-address: {{ peer.source_address }}
{% endif %}
{% if peer.node_selectors is defined %}
node-selectors:
{{ peer.node_selectors | to_yaml(indent=2, width=1337) | indent(8) }}
{% endif %}
{% endfor %}
{% endif %}
address-pools:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment