openshift_hosted.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Hosted Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Hosted install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_hosted:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - include: create_persistent_volumes.yml
  14. - include: openshift_default_storage_class.yml
  15. - include: openshift_hosted_create_projects.yml
  16. - include: openshift_hosted_router.yml
  17. - include: openshift_hosted_registry.yml
  18. - include: cockpit-ui.yml
  19. - include: openshift_prometheus.yml
  20. when: openshift_hosted_prometheus_deploy | default(False) | bool
  21. - include: install_docker_gc.yml
  22. when:
  23. - openshift_use_crio | default(False) | bool
  24. - openshift_crio_enable_docker_gc | default(False) | bool
  25. - name: Hosted Install Checkpoint End
  26. hosts: all
  27. gather_facts: false
  28. tasks:
  29. - name: Set Hosted install 'Complete'
  30. run_once: true
  31. set_stats:
  32. data:
  33. installer_phase_hosted:
  34. status: "Complete"
  35. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"