openshift_hosted.yml 847 B

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