config.yml 895 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Web Console Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Web Console install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_web_console:
  11. title: "Web Console Install"
  12. playbook: "playbooks/openshift-web-console/config.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: Web Console
  16. hosts: oo_first_master
  17. vars:
  18. first_master: "{{ groups.oo_first_master[0] }}"
  19. tasks:
  20. - import_role:
  21. name: openshift_web_console
  22. - name: Web Console Install Checkpoint End
  23. hosts: all
  24. gather_facts: false
  25. tasks:
  26. - name: Set Web Console install 'Complete'
  27. run_once: true
  28. set_stats:
  29. data:
  30. installer_phase_web_console:
  31. status: "Complete"
  32. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"