fix: wait for ssh before gathering facts
Deploy Cluster / Terraform (push) Successful in 30s
Deploy Cluster / Ansible (push) Failing after 1h13m38s

This commit is contained in:
2026-04-30 03:44:13 +00:00
parent 7333cb2780
commit fd5451a5ef
+5 -2
View File
@@ -11,13 +11,16 @@
- name: Bootstrap Kubernetes cluster
hosts: cluster
become: true
gather_facts: true
gather_facts: false
pre_tasks:
- name: Wait for SSH
wait_for_connection:
delay: 10
timeout: 300
timeout: 600
- name: Gather facts after SSH is reachable
setup:
roles:
- common