mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-10-31 08:28:54 +01:00
18 lines
743 B
YAML
18 lines
743 B
YAML
---
|
|
|
|
- name: Check that all nodes to be ready
|
|
command: "{{ k3s_install_dir }}/kubectl get nodes"
|
|
changed_when: false
|
|
failed_when: kubectl_get_nodes_result.stdout.find("was refused") != -1 or
|
|
kubectl_get_nodes_result.stdout.find("ServiceUnavailable") != -1
|
|
register: kubectl_get_nodes_result
|
|
until: kubectl_get_nodes_result.rc == 0
|
|
and kubectl_get_nodes_result.stdout.find("NotReady") == -1
|
|
retries: 30
|
|
delay: 20
|
|
when: k3s_control_node
|
|
and (("disable" not in k3s_runtime_config)
|
|
or ("disable" in k3s_runtime_config and "flannel" not in k3s_runtime_config.disable))
|
|
and not ansible_check_mode
|
|
become: "{{ k3s_become_for_kubectl | ternary(true, false, k3s_become_for_all) }}"
|