openshift_prometheus.yml 606 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Prometheus Install Checkpoint Start
  3. hosts: oo_all_hosts
  4. gather_facts: false
  5. tasks:
  6. - name: Set Prometheus install 'In Progress'
  7. set_stats:
  8. data:
  9. installer_phase_prometheus: "In Progress"
  10. aggregate: false
  11. - name: Create Hosted Resources - openshift_prometheus
  12. hosts: oo_first_master
  13. roles:
  14. - role: openshift_prometheus
  15. - name: Prometheus Install Checkpoint End
  16. hosts: oo_all_hosts
  17. gather_facts: false
  18. tasks:
  19. - name: Set Prometheus install 'Complete'
  20. set_stats:
  21. data:
  22. installer_phase_prometheus: "Complete"
  23. aggregate: false