mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-14 09:20:19 +01:00
11 lines
251 B
YAML
11 lines
251 B
YAML
|
---
|
||
|
|
||
|
- name: Check that the control plane to is available to accept connections
|
||
|
wait_for:
|
||
|
port: "{{ k3s_https_port }}"
|
||
|
host: "{{ k3s_bind_address | default('127.0.0.1') }}"
|
||
|
delay: 5
|
||
|
sleep: 5
|
||
|
timeout: 300
|
||
|
when: k3s_control_node
|