diff options
author | Russell Teague <rteague@redhat.com> | 2017-11-21 16:47:48 -0500 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-11-22 08:14:04 -0500 |
commit | a495780e61e824dddeaf35b9d58b6b37e300505c (patch) | |
tree | 16dd17c673dbce1461bb904f9a67f91c40f415b5 /playbooks/openshift-hosted/private/config.yml | |
parent | 7c6e0712b6bb57dcce6a055d4f88a2234449141f (diff) | |
download | openshift-a495780e61e824dddeaf35b9d58b6b37e300505c.tar.gz openshift-a495780e61e824dddeaf35b9d58b6b37e300505c.tar.bz2 openshift-a495780e61e824dddeaf35b9d58b6b37e300505c.tar.xz openshift-a495780e61e824dddeaf35b9d58b6b37e300505c.zip |
Playbook Consolidation - openshift-hosted
Diffstat (limited to 'playbooks/openshift-hosted/private/config.yml')
-rw-r--r-- | playbooks/openshift-hosted/private/config.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/playbooks/openshift-hosted/private/config.yml b/playbooks/openshift-hosted/private/config.yml new file mode 100644 index 000000000..6bcd02ba2 --- /dev/null +++ b/playbooks/openshift-hosted/private/config.yml @@ -0,0 +1,41 @@ +--- +- name: Hosted Install Checkpoint Start + hosts: all + gather_facts: false + tasks: + - name: Set Hosted install 'In Progress' + run_once: true + set_stats: + data: + installer_phase_hosted: + status: "In Progress" + start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" + +- 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: install_docker_gc.yml + when: + - openshift_use_crio | default(False) | bool + - openshift_crio_enable_docker_gc | default(False) | bool + +- name: Hosted Install Checkpoint End + hosts: all + gather_facts: false + tasks: + - name: Set Hosted install 'Complete' + run_once: true + set_stats: + data: + installer_phase_hosted: + status: "Complete" + end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}" |