openshift_hosted.yml 780 B

123456789101112131415161718192021222324252627282930313233343536
  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. - name: Hosted Install Checkpoint End
  20. hosts: localhost
  21. connection: local
  22. gather_facts: false
  23. tasks:
  24. - name: Set Hosted install 'Complete'
  25. set_stats:
  26. data:
  27. installer_phase_hosted: "Complete"
  28. aggregate: false