openshift_hosted.yml 962 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. - include: install_docker_gc.yml
  20. when:
  21. - openshift_use_crio | default(False) | bool
  22. - openshift_crio_enable_docker_gc | default(False) | bool
  23. - name: Hosted Install Checkpoint End
  24. hosts: oo_all_hosts
  25. gather_facts: false
  26. tasks:
  27. - name: Set Hosted install 'Complete'
  28. set_stats:
  29. data:
  30. installer_phase_hosted: "Complete"
  31. aggregate: false