summaryrefslogtreecommitdiffstats
path: root/ansible/roles/rancher/tasks/rancher_health.yml
blob: b03237392c1979f76040c2b8e1ad87efba59eb33 (plain)
1
2
3
4
5
6
7
8
---
- name: Check cluster health
  uri:
    url: "{{ rancher_server_url }}/v2-beta/projects/{{ k8s_env_id }}"
  register: env_info
  retries: 30
  delay: 15
  until: "env_info.json.healthState == 'healthy'"