diff options
author | Michael Gugino <mgugino@redhat.com> | 2018-02-08 16:55:16 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2018-02-09 10:54:00 -0500 |
commit | 70957a529da6b00c3c614f4f1b1f04385e0ef61a (patch) | |
tree | b1f630ae8b45bbe93ccd4f91802baac468191735 /playbooks/container-runtime | |
parent | 13ebefef2b821c01c091647b2ee17c6d649d0335 (diff) | |
download | openshift-70957a529da6b00c3c614f4f1b1f04385e0ef61a.tar.gz openshift-70957a529da6b00c3c614f4f1b1f04385e0ef61a.tar.bz2 openshift-70957a529da6b00c3c614f4f1b1f04385e0ef61a.tar.xz openshift-70957a529da6b00c3c614f4f1b1f04385e0ef61a.zip |
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/container-runtime')
-rw-r--r-- | playbooks/container-runtime/config.yml | 4 | ||||
-rw-r--r-- | playbooks/container-runtime/setup_storage.yml | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/playbooks/container-runtime/config.yml b/playbooks/container-runtime/config.yml index f15aa771f..d7f3634ec 100644 --- a/playbooks/container-runtime/config.yml +++ b/playbooks/container-runtime/config.yml @@ -1,6 +1,8 @@ --- - import_playbook: ../init/main.yml vars: - skip_verison: True + skip_version: True + l_openshift_version_set_hosts: "all:!all" + l_openshift_version_check_hosts: "all:!all" - import_playbook: private/config.yml diff --git a/playbooks/container-runtime/setup_storage.yml b/playbooks/container-runtime/setup_storage.yml index 98e876b2c..17ff11cfd 100644 --- a/playbooks/container-runtime/setup_storage.yml +++ b/playbooks/container-runtime/setup_storage.yml @@ -1,6 +1,8 @@ --- - import_playbook: ../init/main.yml vars: - skip_verison: True + skip_version: True + l_openshift_version_set_hosts: "all:!all" + l_openshift_version_check_hosts: "all:!all" - import_playbook: private/setup_storage.yml |