config.yml 816 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: Prometheus Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Prometheus install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_prometheus:
  11. title: "Prometheus Install"
  12. playbook: "playbooks/openshift-prometheus/config.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: OpenShift Prometheus
  16. hosts: oo_first_master
  17. roles:
  18. - role: openshift_prometheus
  19. - name: Prometheus Install Checkpoint End
  20. hosts: all
  21. gather_facts: false
  22. tasks:
  23. - name: Set Prometheus install 'Complete'
  24. run_once: true
  25. set_stats:
  26. data:
  27. installer_phase_prometheus:
  28. status: "Complete"
  29. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"