config.yml 690 B

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