|
@@ -446,24 +446,6 @@ def normalize_provider_facts(provider, metadata):
|
|
|
return facts
|
|
|
|
|
|
|
|
|
-def set_node_schedulability(facts):
|
|
|
- """ Set schedulable facts if not already present in facts dict
|
|
|
- Args:
|
|
|
- facts (dict): existing facts
|
|
|
- Returns:
|
|
|
- dict: the facts dict updated with the generated schedulable
|
|
|
- facts if they were not already present
|
|
|
-
|
|
|
- """
|
|
|
- if 'node' in facts:
|
|
|
- if 'schedulable' not in facts['node']:
|
|
|
- if 'master' in facts:
|
|
|
- facts['node']['schedulable'] = False
|
|
|
- else:
|
|
|
- facts['node']['schedulable'] = True
|
|
|
- return facts
|
|
|
-
|
|
|
-
|
|
|
# pylint: disable=too-many-branches
|
|
|
def set_selectors(facts):
|
|
|
""" Set selectors facts if not already present in facts dict
|
|
@@ -1838,7 +1820,6 @@ class OpenShiftFacts(object):
|
|
|
facts['current_config'] = get_current_config(facts)
|
|
|
facts = set_url_facts_if_unset(facts)
|
|
|
facts = set_project_cfg_facts_if_unset(facts)
|
|
|
- facts = set_node_schedulability(facts)
|
|
|
facts = set_selectors(facts)
|
|
|
facts = set_identity_providers_if_unset(facts)
|
|
|
facts = set_deployment_facts_if_unset(facts)
|