summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/openshift-cluster/provision.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-01-22 13:17:19 -0800
committerGitHub <noreply@github.com>2018-01-22 13:17:19 -0800
commitb79b497a9a443140f23cd3b8ef5c19d1893bce95 (patch)
tree0ae7a57c61f282c7eaede25a0f7391b4095c8691 /playbooks/openstack/openshift-cluster/provision.yml
parentf34f986bf3ab0523ce6ec1145b4a57a51b9ab3fa (diff)
parent7b33ab6dad2f9775a4e206ec90bc10ce46ae02f6 (diff)
downloadopenshift-b79b497a9a443140f23cd3b8ef5c19d1893bce95.tar.gz
openshift-b79b497a9a443140f23cd3b8ef5c19d1893bce95.tar.bz2
openshift-b79b497a9a443140f23cd3b8ef5c19d1893bce95.tar.xz
openshift-b79b497a9a443140f23cd3b8ef5c19d1893bce95.zip
Merge pull request #6814 from mgugino-upstream-stage/move-up-base-packages
Automatic merge from submit-queue. Install base_packages earlier Currently, openshift_facts requires pyyaml to be installed. This package is installed via init/base_packages.yml, which is currently called after init/facts.yml. This results in a situation where installs will fail due to missing python dependency. This commit splits init/facts.yml into two, and allows base_packages.yml to be run before the openshift_facts.py plugin is executed.
Diffstat (limited to 'playbooks/openstack/openshift-cluster/provision.yml')
-rw-r--r--playbooks/openstack/openshift-cluster/provision.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/openstack/openshift-cluster/provision.yml b/playbooks/openstack/openshift-cluster/provision.yml
index a38d7bff7..73c1926a0 100644
--- a/playbooks/openstack/openshift-cluster/provision.yml
+++ b/playbooks/openstack/openshift-cluster/provision.yml
@@ -26,8 +26,8 @@
- name: Gather facts for the new nodes
setup:
-- name: set common facts
- import_playbook: ../../init/facts.yml
+- import_playbook: ../../init/basic_facts.yml
+- import_playbook: ../../init/cluster_facts.yml
# TODO(shadower): consider splitting this up so people can stop here