config.yml 786 B

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