openshift_metrics.yml 779 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Metrics Install Checkpoint Start
  3. hosts: oo_all_hosts
  4. gather_facts: false
  5. tasks:
  6. - name: Set Metrics install 'In Progress'
  7. set_stats:
  8. data:
  9. installer_phase_metrics: "In Progress"
  10. aggregate: false
  11. - name: OpenShift Metrics
  12. hosts: oo_first_master
  13. roles:
  14. - role: openshift_metrics
  15. - name: OpenShift Metrics
  16. hosts: oo_masters:!oo_first_master
  17. serial: 1
  18. tasks:
  19. - name: Setup the non-first masters configs
  20. include_role:
  21. name: openshift_metrics
  22. tasks_from: update_master_config.yaml
  23. - name: Metrics Install Checkpoint End
  24. hosts: oo_all_hosts
  25. gather_facts: false
  26. tasks:
  27. - name: Set Metrics install 'Complete'
  28. set_stats:
  29. data:
  30. installer_phase_metrics: "Complete"
  31. aggregate: false