ansible-role-k3s/tasks/validate/check-control-plane.yml
2020-12-12 14:27:59 +00:00

11 lines
328 B
YAML

---
- name: Check that the control plane to is available to accept connections
ansible.builtin.wait_for:
port: "{{ k3s_runtime_config['https-listen-port'] | default('6443') }}"
host: "{{ k3s_runtime_config['bind-address'] | default('127.0.0.1') }}"
delay: 5
sleep: 5
timeout: 300
when: k3s_control_node