diff options
author | Andrew Butcher <abutcher@redhat.com> | 2017-01-25 09:55:21 -0500 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2017-01-25 09:55:21 -0500 |
commit | 0f0b4b3bb3aea5163d91b25818d0f4b06e06ceaa (patch) | |
tree | 2316de01008f0881517282b00b277e7b7e9c32d8 /roles/openshift_facts/library | |
parent | c5a1e1eb9238f33983ade2917805f7da6e87bcb9 (diff) | |
download | openshift-0f0b4b3bb3aea5163d91b25818d0f4b06e06ceaa.tar.gz openshift-0f0b4b3bb3aea5163d91b25818d0f4b06e06ceaa.tar.bz2 openshift-0f0b4b3bb3aea5163d91b25818d0f4b06e06ceaa.tar.xz openshift-0f0b4b3bb3aea5163d91b25818d0f4b06e06ceaa.zip |
Remove master_count restriction.
Diffstat (limited to 'roles/openshift_facts/library')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index f7506bd63..78886dcea 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -1460,7 +1460,7 @@ def merge_facts(orig, new, additive_facts_to_overwrite, protected_facts_to_overw dict: the merged facts """ additive_facts = ['named_certificates'] - protected_facts = ['ha', 'master_count'] + protected_facts = ['ha'] # Facts we do not ever want to merge. These originate in inventory variables # and contain JSON dicts. We don't ever want to trigger a merge @@ -1513,14 +1513,6 @@ def merge_facts(orig, new, additive_facts_to_overwrite, protected_facts_to_overw # it so we will determine if it is okay to change this # fact. elif key in protected_facts and key not in [x.split('.')[-1] for x in protected_facts_to_overwrite]: - # The master count (int) can only increase unless it - # has been passed as a protected fact to overwrite. - if key == 'master_count' and new[key] is not None and new[key] is not '': - if int(value) <= int(new[key]): - facts[key] = copy.deepcopy(new[key]) - else: - # pylint: disable=line-too-long - module.fail_json(msg='openshift_facts received a lower value for openshift.master.master_count') # noqa: F405 # ha (bool) can not change unless it has been passed # as a protected fact to overwrite. if key == 'ha': |