openshift_hosted.yml 813 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Hosted Install Checkpoint Start
  3. hosts: oo_all_hosts
  4. gather_facts: false
  5. tasks:
  6. - name: Set Hosted install 'In Progress'
  7. set_stats:
  8. data:
  9. installer_phase_hosted: "In Progress"
  10. aggregate: false
  11. - include: create_persistent_volumes.yml
  12. - include: openshift_default_storage_class.yml
  13. - include: openshift_hosted_create_projects.yml
  14. - include: openshift_hosted_router.yml
  15. - include: openshift_hosted_registry.yml
  16. - include: cockpit-ui.yml
  17. - include: openshift_prometheus.yml
  18. when: openshift_hosted_prometheus_deploy | default(False) | bool
  19. - name: Hosted Install Checkpoint End
  20. hosts: oo_all_hosts
  21. gather_facts: false
  22. tasks:
  23. - name: Set Hosted install 'Complete'
  24. set_stats:
  25. data:
  26. installer_phase_hosted: "Complete"
  27. aggregate: false