diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-01-22 13:17:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 13:17:19 -0800 |
commit | b79b497a9a443140f23cd3b8ef5c19d1893bce95 (patch) | |
tree | 0ae7a57c61f282c7eaede25a0f7391b4095c8691 /playbooks/prerequisites.yml | |
parent | f34f986bf3ab0523ce6ec1145b4a57a51b9ab3fa (diff) | |
parent | 7b33ab6dad2f9775a4e206ec90bc10ce46ae02f6 (diff) | |
download | openshift-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/prerequisites.yml')
-rw-r--r-- | playbooks/prerequisites.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/playbooks/prerequisites.yml b/playbooks/prerequisites.yml index 938bd3bc6..0b76ca862 100644 --- a/playbooks/prerequisites.yml +++ b/playbooks/prerequisites.yml @@ -4,14 +4,13 @@ - import_playbook: init/main.yml vars: skip_verison: True + l_install_base_packages: True - import_playbook: init/validate_hostnames.yml when: not (skip_validate_hostnames | default(False)) - import_playbook: init/repos.yml -- import_playbook: init/base_packages.yml - # This is required for container runtime for crio, only needs to run once. - name: Configure os_firewall hosts: "{{ l_scale_up_hosts | default(l_default_firewall_hosts) }}" |