diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2017-10-05 05:19:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-05 05:19:53 -0700 |
commit | 2dde1853efe73b7b6f185ce918aaaefeac20334c (patch) | |
tree | 2283cf415cb1544797a8c8b264b2f869741afeee /playbooks/common | |
parent | cdbc995e65921210981e9fb3710a36c7d93a35dc (diff) | |
parent | ca90c960f14824608e546f71ef777f19ce818c43 (diff) | |
download | openshift-2dde1853efe73b7b6f185ce918aaaefeac20334c.tar.gz openshift-2dde1853efe73b7b6f185ce918aaaefeac20334c.tar.bz2 openshift-2dde1853efe73b7b6f185ce918aaaefeac20334c.tar.xz openshift-2dde1853efe73b7b6f185ce918aaaefeac20334c.zip |
Merge pull request #5605 from mgugino-upstream-stage/build-provision-split
Automatic merge from submit-queue.
Build provision split
Make provisioning steps more reusable
Reorganizing and making some of the plays more
reusable.
Depends-on: https://github.com/openshift/openshift-ansible/pull/5565
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 |