config.yml 912 B

1234567891011121314151617181920212223242526272829303132333435363738
  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: OpenShift Metrics
  18. hosts: oo_masters:!oo_first_master
  19. serial: 1
  20. tasks:
  21. - name: Setup the non-first masters configs
  22. import_role:
  23. name: openshift_metrics
  24. tasks_from: update_master_config.yaml
  25. - name: Metrics Install Checkpoint End
  26. hosts: all
  27. gather_facts: false
  28. tasks:
  29. - name: Set Metrics install 'Complete'
  30. run_once: true
  31. set_stats:
  32. data:
  33. installer_phase_metrics:
  34. status: "Complete"
  35. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"