mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-10-31 08:28:54 +01:00
11 lines
328 B
YAML
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
|