ansible-role-k3s/tasks/post_checks_control_plane.yml

11 lines
325 B
YAML
Raw Permalink Normal View History

2020-10-17 19:26:30 +02:00
---
2021-02-27 20:02:49 +01:00
- name: Check that the control plane 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') }}"
2020-10-17 19:26:30 +02:00
delay: 5
sleep: 5
timeout: 300
when: k3s_control_node