install.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ---
  2. - name: Health Check Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Health Check 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_health:
  11. title: "Health Check"
  12. playbook: "playbooks/openshift-checks/pre-install.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: OpenShift Health Checks
  16. hosts: oo_all_hosts
  17. any_errors_fatal: true
  18. roles:
  19. - openshift_health_checker
  20. vars:
  21. - r_openshift_health_checker_playbook_context: install
  22. post_tasks:
  23. - name: Run health checks (install) - EL
  24. when: ansible_distribution != "Fedora"
  25. action: openshift_health_check
  26. args:
  27. checks:
  28. - disk_availability
  29. - memory_availability
  30. - package_availability
  31. - package_version
  32. - docker_image_availability
  33. - docker_storage
  34. - name: Run health checks (install) - Fedora
  35. when: ansible_distribution == "Fedora"
  36. action: openshift_health_check
  37. args:
  38. checks:
  39. - docker_image_availability
  40. - name: Health Check Checkpoint End
  41. hosts: all
  42. gather_facts: false
  43. tasks:
  44. - name: Set Health Check 'Complete'
  45. run_once: true
  46. set_stats:
  47. data:
  48. installer_phase_health:
  49. status: "Complete"
  50. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"