|
@@ -480,23 +480,6 @@ def set_selectors(facts):
|
|
|
|
|
|
return facts
|
|
return facts
|
|
|
|
|
|
-def set_metrics_facts_if_unset(facts):
|
|
|
|
- """ Set cluster metrics facts if not already present in facts dict
|
|
|
|
- dict: the facts dict updated with the generated cluster metrics facts if
|
|
|
|
- missing
|
|
|
|
- Args:
|
|
|
|
- facts (dict): existing facts
|
|
|
|
- Returns:
|
|
|
|
- dict: the facts dict updated with the generated cluster metrics
|
|
|
|
- facts if they were not already present
|
|
|
|
-
|
|
|
|
- """
|
|
|
|
- if 'common' in facts:
|
|
|
|
- if 'use_cluster_metrics' not in facts['common']:
|
|
|
|
- use_cluster_metrics = False
|
|
|
|
- facts['common']['use_cluster_metrics'] = use_cluster_metrics
|
|
|
|
- return facts
|
|
|
|
-
|
|
|
|
def set_dnsmasq_facts_if_unset(facts):
|
|
def set_dnsmasq_facts_if_unset(facts):
|
|
""" Set dnsmasq facts if not already present in facts
|
|
""" Set dnsmasq facts if not already present in facts
|
|
Args:
|
|
Args:
|
|
@@ -1674,7 +1657,6 @@ class OpenShiftFacts(object):
|
|
facts = set_nuage_facts_if_unset(facts)
|
|
facts = set_nuage_facts_if_unset(facts)
|
|
facts = set_node_schedulability(facts)
|
|
facts = set_node_schedulability(facts)
|
|
facts = set_selectors(facts)
|
|
facts = set_selectors(facts)
|
|
- facts = set_metrics_facts_if_unset(facts)
|
|
|
|
facts = set_identity_providers_if_unset(facts)
|
|
facts = set_identity_providers_if_unset(facts)
|
|
facts = set_sdn_facts_if_unset(facts, self.system_facts)
|
|
facts = set_sdn_facts_if_unset(facts, self.system_facts)
|
|
facts = set_deployment_facts_if_unset(facts)
|
|
facts = set_deployment_facts_if_unset(facts)
|