123456789101112131415161718192021222324252627282930313233343536 |
- ---
- - name: Hosted Install Checkpoint Start
- hosts: localhost
- connection: local
- gather_facts: false
- tasks:
- - name: Set Hosted install 'In Progress'
- set_stats:
- data:
- installer_phase_hosted: "In Progress"
- aggregate: false
- - include: create_persistent_volumes.yml
- - include: openshift_default_storage_class.yml
- - include: openshift_hosted_create_projects.yml
- - include: openshift_hosted_router.yml
- - include: openshift_hosted_registry.yml
- - include: cockpit-ui.yml
- - include: openshift_prometheus.yml
- - name: Hosted Install Checkpoint End
- hosts: localhost
- connection: local
- gather_facts: false
- tasks:
- - name: Set Hosted install 'Complete'
- set_stats:
- data:
- installer_phase_hosted: "Complete"
- aggregate: false
|