summaryrefslogtreecommitdiffstats
path: root/playbooks/init
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-02-09 16:14:03 -0800
committerGitHub <noreply@github.com>2018-02-09 16:14:03 -0800
commit64a6974ced70b17c34016732ae75b428d5925765 (patch)
tree874161dc88c561bc89608622d607b8f39834a68f /playbooks/init
parente0f0c9f85c6cd18cfac505394ac84926c4629c4c (diff)
parent70957a529da6b00c3c614f4f1b1f04385e0ef61a (diff)
downloadopenshift-64a6974ced70b17c34016732ae75b428d5925765.tar.gz
openshift-64a6974ced70b17c34016732ae75b428d5925765.tar.bz2
openshift-64a6974ced70b17c34016732ae75b428d5925765.tar.xz
openshift-64a6974ced70b17c34016732ae75b428d5925765.zip
Merge pull request #7078 from mgugino-upstream-stage/limit-hosts
Automatic merge from submit-queue. Limit host scope during plays Many plays only target a select subset of hosts, especially oo_first_master for components such as logging and registry. This commit limits the scope of most plays to eliminate unnecessary task execution on node groups. This will result in great time savings for large deployments. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1516526
Diffstat (limited to 'playbooks/init')
-rw-r--r--playbooks/init/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/init/main.yml b/playbooks/init/main.yml
index 9886691e0..468d81fbe 100644
--- a/playbooks/init/main.yml
+++ b/playbooks/init/main.yml
@@ -1,5 +1,5 @@
---
-# skip_verison and l_install_base_packages are passed in via prerequistes.yml.
+# skip_version and l_install_base_packages are passed in via prerequistes.yml.
# skip_sanity_checks is passed in via openshift-node/private/image_prep.yml
- name: Initialization Checkpoint Start
@@ -27,7 +27,7 @@
- import_playbook: cluster_facts.yml
- import_playbook: version.yml
- when: not (skip_verison | default(False))
+ when: not (skip_version | default(False))
- import_playbook: sanity_checks.yml
when: not (skip_sanity_checks | default(False))