diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-09-29 15:03:09 -0400 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-10-02 11:34:49 -0400 |
commit | 614dc4ff5a975be8438c9e034c84dba3410c0a20 (patch) | |
tree | 8cf7d7e2d60562e7d1834b55e8d6fcce7bdf8b2c /playbooks/common | |
parent | e54cb2611e86c43650512ee3afee2c6ce846b064 (diff) | |
download | openshift-614dc4ff5a975be8438c9e034c84dba3410c0a20.tar.gz openshift-614dc4ff5a975be8438c9e034c84dba3410c0a20.tar.bz2 openshift-614dc4ff5a975be8438c9e034c84dba3410c0a20.tar.xz openshift-614dc4ff5a975be8438c9e034c84dba3410c0a20.zip |
Make provisioning steps more reusable
Reorganizing and making some of the plays more
reusable.
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-node/image_prep.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/playbooks/common/openshift-node/image_prep.yml b/playbooks/common/openshift-node/image_prep.yml new file mode 100644 index 000000000..fc06621ee --- /dev/null +++ b/playbooks/common/openshift-node/image_prep.yml @@ -0,0 +1,21 @@ +--- +- name: normalize groups + include: ../../byo/openshift-cluster/initialize_groups.yml + +- name: run the std_include + include: ../openshift-cluster/evaluate_groups.yml + +- name: run the std_include + include: ../openshift-cluster/initialize_facts.yml + +- name: run the std_include + include: ../openshift-cluster/initialize_openshift_repos.yml + +- name: run node config setup + include: setup.yml + +- name: run node config + include: configure_nodes.yml + +- name: Re-enable excluders + include: enable_excluders.yml |