config.yml 992 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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: 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: all
  25. gather_facts: false
  26. tasks:
  27. - name: Set Hosted install 'Complete'
  28. run_once: true
  29. set_stats:
  30. data:
  31. installer_phase_hosted:
  32. status: "Complete"
  33. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"