|
@ -35,7 +35,7 @@ |
|
|
run_once: true |
|
|
run_once: true |
|
|
delegate_to: "{{groups['kube-master'][0]}}" |
|
|
delegate_to: "{{groups['kube-master'][0]}}" |
|
|
register: nca_pod |
|
|
register: nca_pod |
|
|
until: "{{ nca_pod.stdout_lines|length }} >= {{ groups['kube-node']|length * 2 }}" |
|
|
|
|
|
|
|
|
until: "{{ nca_pod.stdout_lines|length }} >= {{ groups['kube-node']|intersect(play_hosts)|length * 2 }}" |
|
|
retries: 3 |
|
|
retries: 3 |
|
|
delay: 10 |
|
|
delay: 10 |
|
|
|
|
|
|
|
@ -48,7 +48,7 @@ |
|
|
delay: "{{ agent_report_interval }}" |
|
|
delay: "{{ agent_report_interval }}" |
|
|
until: "{{ agents.content|length > 0 and |
|
|
until: "{{ agents.content|length > 0 and |
|
|
agents.content[0] == '{' and |
|
|
agents.content[0] == '{' and |
|
|
agents.content|from_json|length >= groups['kube-node']|length * 2 }}" |
|
|
|
|
|
|
|
|
agents.content|from_json|length >= groups['kube-node']|intersect(play_hosts)|length * 2 }}" |
|
|
failed_when: false |
|
|
failed_when: false |
|
|
no_log: true |
|
|
no_log: true |
|
|
|
|
|
|
|
|