openshift_metrics.yml 813 B

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