diff options
author | Russell Teague <rteague@redhat.com> | 2017-11-03 17:28:45 -0400 |
---|---|---|
committer | Russell Teague <rteague@redhat.com> | 2017-11-15 13:35:10 -0500 |
commit | e5f4823d6e4191367178f743ddd5e0885598e8cf (patch) | |
tree | 10877c2ae156d1362f1394177cb02942951db24e /playbooks/byo/openshift-node | |
parent | c49dd26ba094b96da1e234d8ea355861a5220c99 (diff) | |
download | openshift-e5f4823d6e4191367178f743ddd5e0885598e8cf.tar.gz openshift-e5f4823d6e4191367178f743ddd5e0885598e8cf.tar.bz2 openshift-e5f4823d6e4191367178f743ddd5e0885598e8cf.tar.xz openshift-e5f4823d6e4191367178f743ddd5e0885598e8cf.zip |
Playbook Consolidation - Initialization
Diffstat (limited to 'playbooks/byo/openshift-node')
-rw-r--r-- | playbooks/byo/openshift-node/certificates.yml | 4 | ||||
-rw-r--r-- | playbooks/byo/openshift-node/config.yml | 4 | ||||
-rw-r--r-- | playbooks/byo/openshift-node/network_manager.yml | 2 | ||||
-rw-r--r-- | playbooks/byo/openshift-node/restart.yml | 4 | ||||
-rw-r--r-- | playbooks/byo/openshift-node/scaleup.yml | 6 |
5 files changed, 8 insertions, 12 deletions
diff --git a/playbooks/byo/openshift-node/certificates.yml b/playbooks/byo/openshift-node/certificates.yml index 3d2de74a9..5342cf46b 100644 --- a/playbooks/byo/openshift-node/certificates.yml +++ b/playbooks/byo/openshift-node/certificates.yml @@ -1,6 +1,4 @@ --- -- include: ../openshift-cluster/initialize_groups.yml - -- include: ../../common/openshift-cluster/std_include.yml +- include: ../../init/main.yml - include: ../../common/openshift-node/certificates.yml diff --git a/playbooks/byo/openshift-node/config.yml b/playbooks/byo/openshift-node/config.yml index 839dc36ff..b157b13d6 100644 --- a/playbooks/byo/openshift-node/config.yml +++ b/playbooks/byo/openshift-node/config.yml @@ -1,6 +1,4 @@ --- -- include: ../openshift-cluster/initialize_groups.yml - -- include: ../../common/openshift-cluster/std_include.yml +- include: ../../init/main.yml - include: ../../common/openshift-node/config.yml diff --git a/playbooks/byo/openshift-node/network_manager.yml b/playbooks/byo/openshift-node/network_manager.yml index b23692237..3d96cbdd5 100644 --- a/playbooks/byo/openshift-node/network_manager.yml +++ b/playbooks/byo/openshift-node/network_manager.yml @@ -1,4 +1,4 @@ --- -- include: ../openshift-cluster/initialize_groups.yml +- include: ../../init/evaluate_groups.yml - include: ../../common/openshift-node/network_manager.yml diff --git a/playbooks/byo/openshift-node/restart.yml b/playbooks/byo/openshift-node/restart.yml index ccf9e82da..53a6b9ed4 100644 --- a/playbooks/byo/openshift-node/restart.yml +++ b/playbooks/byo/openshift-node/restart.yml @@ -1,6 +1,4 @@ --- -- include: ../openshift-cluster/initialize_groups.yml - -- include: ../../common/openshift-cluster/std_include.yml +- include: ../../init/main.yml - include: ../../common/openshift-node/restart.yml diff --git a/playbooks/byo/openshift-node/scaleup.yml b/playbooks/byo/openshift-node/scaleup.yml index e0c36fb69..bf1bbcf46 100644 --- a/playbooks/byo/openshift-node/scaleup.yml +++ b/playbooks/byo/openshift-node/scaleup.yml @@ -1,5 +1,5 @@ --- -- include: ../openshift-cluster/initialize_groups.yml +- include: ../../init/evaluate_groups.yml - name: Ensure there are new_nodes hosts: localhost @@ -14,6 +14,8 @@ when: - g_new_node_hosts | default([]) | length == 0 -- include: ../../common/openshift-cluster/std_include.yml +# Need a better way to do the above check for node without +# running evaluate_groups and init/main.yml +- include: ../../init/main.yml - include: ../../common/openshift-node/config.yml |