diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-10-09 10:56:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-09 10:56:43 -0400 |
commit | fced8262d239d1d44ce64a5c6d02caa1530c5d45 (patch) | |
tree | d50659fa9b1fd4ab41ae611edf1f65b52c4fd5e9 /playbooks/common/openshift-cluster | |
parent | b37c5e648736c11913c56ee2b9620920ef42e99e (diff) | |
parent | c0f63fb902b53bc592e6862d5876af9b244ee82b (diff) | |
download | openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.tar.gz openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.tar.bz2 openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.tar.xz openshift-fced8262d239d1d44ce64a5c6d02caa1530c5d45.zip |
Merge pull request #5682 from tbielawa/openshift_management
Rename openshift_cfme role to openshift_management
Diffstat (limited to 'playbooks/common/openshift-cluster')
-rw-r--r-- | playbooks/common/openshift-cluster/config.yml | 4 | ||||
-rw-r--r-- | playbooks/common/openshift-cluster/openshift_cfme.yml | 25 | ||||
-rw-r--r-- | playbooks/common/openshift-cluster/openshift_management.yml | 25 |
3 files changed, 27 insertions, 27 deletions
diff --git a/playbooks/common/openshift-cluster/config.yml b/playbooks/common/openshift-cluster/config.yml index 76ca067e7..b399ea995 100644 --- a/playbooks/common/openshift-cluster/config.yml +++ b/playbooks/common/openshift-cluster/config.yml @@ -46,8 +46,8 @@ - include: service_catalog.yml when: openshift_enable_service_catalog | default(false) | bool -- include: openshift_cfme.yml - when: openshift_cfme_install_cfme | default(false) | bool +- include: openshift_management.yml + when: openshift_management_install_management | default(false) | bool - name: Print deprecated variable warning message if necessary hosts: oo_first_master diff --git a/playbooks/common/openshift-cluster/openshift_cfme.yml b/playbooks/common/openshift-cluster/openshift_cfme.yml deleted file mode 100644 index 29966d99e..000000000 --- a/playbooks/common/openshift-cluster/openshift_cfme.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -- name: CFME Install Checkpoint Start - hosts: localhost - connection: local - gather_facts: false - tasks: - - name: Set CFME install 'In Progress' - set_stats: - data: - installer_phase_cfme: "In Progress" - aggregate: false - -- name: CFME - include: ../openshift-cfme/config.yml - -- name: CFME Install Checkpoint End - hosts: localhost - connection: local - gather_facts: false - tasks: - - name: Set CFME install 'Complete' - set_stats: - data: - installer_phase_CFME: "Complete" - aggregate: false diff --git a/playbooks/common/openshift-cluster/openshift_management.yml b/playbooks/common/openshift-cluster/openshift_management.yml new file mode 100644 index 000000000..6e582920b --- /dev/null +++ b/playbooks/common/openshift-cluster/openshift_management.yml @@ -0,0 +1,25 @@ +--- +- name: Management Install Checkpoint Start + hosts: localhost + connection: local + gather_facts: false + tasks: + - name: Set Management install 'In Progress' + set_stats: + data: + installer_phase_Management: "In Progress" + aggregate: false + +- name: Management + include: ../openshift-management/config.yml + +- name: Management Install Checkpoint End + hosts: localhost + connection: local + gather_facts: false + tasks: + - name: Set Management install 'Complete' + set_stats: + data: + installer_phase_Management: "Complete" + aggregate: false |