apply calico bgp peer definition task to all nodes, but delegate to (#8974)
first control plane node
This commit is contained in:
parent
ca212c08de
commit
b33896844e
1 changed files with 2 additions and 1 deletions
|
@ -569,9 +569,10 @@
|
||||||
delay: "{{ retry_stagger | random + 3 }}"
|
delay: "{{ retry_stagger | random + 3 }}"
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ peers|selectattr('scope','undefined')|list|default([]) | union(peers|selectattr('scope','defined')|selectattr('scope','equalto', 'node')|list|default([])) }}"
|
- "{{ peers|selectattr('scope','undefined')|list|default([]) | union(peers|selectattr('scope','defined')|selectattr('scope','equalto', 'node')|list|default([])) }}"
|
||||||
|
delegate_to: "{{ groups['kube_control_plane'][0] }}"
|
||||||
when:
|
when:
|
||||||
- peer_with_router|default(false)
|
- peer_with_router|default(false)
|
||||||
- inventory_hostname == groups['kube_control_plane'][0]
|
- inventory_hostname in groups['k8s_cluster']
|
||||||
|
|
||||||
- name: Calico | Create Calico ipam manifests
|
- name: Calico | Create Calico ipam manifests
|
||||||
template:
|
template:
|
||||||
|
|
Loading…
Reference in a new issue