Browse Source
make sure peers is defined. (#11259)
* make sure peers is defined.
* Update peer_with_router.yml
pull/11274/head
Ehsan Golpayegani
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
roles/network_plugin/calico/tasks/peer_with_router.yml
|
@ -19,7 +19,7 @@ |
|
|
until: output.rc == 0 |
|
|
until: output.rc == 0 |
|
|
delay: "{{ retry_stagger | random + 3 }}" |
|
|
delay: "{{ retry_stagger | random + 3 }}" |
|
|
with_items: |
|
|
with_items: |
|
|
- "{{ peers | selectattr('scope', 'defined') | selectattr('scope', 'equalto', 'global') | list | default([]) }}" |
|
|
|
|
|
|
|
|
- "{{ peers | default([]) | selectattr('scope', 'defined') | selectattr('scope', 'equalto', 'global') | list }}" |
|
|
when: |
|
|
when: |
|
|
- inventory_hostname == groups['kube_control_plane'][0] |
|
|
- inventory_hostname == groups['kube_control_plane'][0] |
|
|
|
|
|
|
|
@ -107,7 +107,7 @@ |
|
|
until: output.rc == 0 |
|
|
until: output.rc == 0 |
|
|
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 | default([]) | selectattr('scope', 'undefined') | list | union(peers | default([]) | selectattr('scope', 'defined') | selectattr('scope', 'equalto', 'node') | list ) }}" |
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}" |
|
|
delegate_to: "{{ groups['kube_control_plane'][0] }}" |
|
|
when: |
|
|
when: |
|
|
- inventory_hostname in groups['k8s_cluster'] |
|
|
- inventory_hostname in groups['k8s_cluster'] |