config.yml 741 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. - name: Monitor Availability Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Monitor Availability 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_monitor_availability:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - name: Configure Monitor Availability
  14. hosts: oo_first_master
  15. roles:
  16. - role: openshift_monitor_availability
  17. - name: Monitor Availability End
  18. hosts: all
  19. gather_facts: false
  20. tasks:
  21. - name: Set Monitor Availability 'Complete'
  22. run_once: true
  23. set_stats:
  24. data:
  25. installer_phase_monitor_availability:
  26. status: "Complete"
  27. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"