|
@@ -864,20 +864,29 @@ def apply_provider_facts(facts, provider_facts):
|
|
|
return facts
|
|
|
|
|
|
|
|
|
-def merge_facts(orig, new):
|
|
|
+def merge_facts(orig, new, overwrite_additive_facts):
|
|
|
""" Recursively merge facts dicts
|
|
|
|
|
|
Args:
|
|
|
orig (dict): existing facts
|
|
|
new (dict): facts to update
|
|
|
+ overwrite_additive_facts (bool): overwrite additive facts
|
|
|
Returns:
|
|
|
dict: the merged facts
|
|
|
"""
|
|
|
+ additive_facts = ['named_certificates']
|
|
|
facts = dict()
|
|
|
for key, value in orig.iteritems():
|
|
|
if key in new:
|
|
|
if isinstance(value, dict) and isinstance(new[key], dict):
|
|
|
- facts[key] = merge_facts(value, new[key])
|
|
|
+ facts[key] = merge_facts(value, new[key], overwrite_additive_facts)
|
|
|
+ elif key in additive_facts and not overwrite_additive_facts:
|
|
|
+ if isinstance(value, list) and isinstance(new[key], list):
|
|
|
+ new_fact = []
|
|
|
+ for item in copy.deepcopy(value) + copy.copy(new[key]):
|
|
|
+ if item not in new_fact:
|
|
|
+ new_fact.append(item)
|
|
|
+ facts[key] = new_fact
|
|
|
else:
|
|
|
facts[key] = copy.copy(new[key])
|
|
|
else:
|
|
@@ -961,13 +970,14 @@ class OpenShiftFacts(object):
|
|
|
role (str): role for setting local facts
|
|
|
filename (str): local facts file to use
|
|
|
local_facts (dict): local facts to set
|
|
|
+ overwrite_additive_facts (bool): overwrite additive facts
|
|
|
|
|
|
Raises:
|
|
|
OpenShiftFactsUnsupportedRoleError:
|
|
|
"""
|
|
|
known_roles = ['common', 'master', 'node', 'master_sdn', 'node_sdn', 'dns', 'etcd']
|
|
|
|
|
|
- def __init__(self, role, filename, local_facts):
|
|
|
+ def __init__(self, role, filename, local_facts, overwrite_additive_facts=False):
|
|
|
self.changed = False
|
|
|
self.filename = filename
|
|
|
if role not in self.known_roles:
|
|
@@ -976,25 +986,26 @@ class OpenShiftFacts(object):
|
|
|
)
|
|
|
self.role = role
|
|
|
self.system_facts = ansible_facts(module)
|
|
|
- self.facts = self.generate_facts(local_facts)
|
|
|
+ self.facts = self.generate_facts(local_facts, overwrite_additive_facts)
|
|
|
|
|
|
- def generate_facts(self, local_facts):
|
|
|
+ def generate_facts(self, local_facts, overwrite_additive_facts):
|
|
|
""" Generate facts
|
|
|
|
|
|
Args:
|
|
|
local_facts (dict): local_facts for overriding generated
|
|
|
defaults
|
|
|
+ overwrite_additive_facts (dict): overwrite additive facts
|
|
|
|
|
|
Returns:
|
|
|
dict: The generated facts
|
|
|
"""
|
|
|
- local_facts = self.init_local_facts(local_facts)
|
|
|
+ local_facts = self.init_local_facts(local_facts, overwrite_additive_facts)
|
|
|
roles = local_facts.keys()
|
|
|
|
|
|
defaults = self.get_defaults(roles)
|
|
|
provider_facts = self.init_provider_facts()
|
|
|
facts = apply_provider_facts(defaults, provider_facts)
|
|
|
- facts = merge_facts(facts, local_facts)
|
|
|
+ facts = merge_facts(facts, local_facts, overwrite_additive_facts)
|
|
|
facts['current_config'] = get_current_config(facts)
|
|
|
facts = set_url_facts_if_unset(facts)
|
|
|
facts = set_project_cfg_facts_if_unset(facts)
|
|
@@ -1132,11 +1143,12 @@ class OpenShiftFacts(object):
|
|
|
)
|
|
|
return provider_facts
|
|
|
|
|
|
- def init_local_facts(self, facts=None):
|
|
|
+ def init_local_facts(self, facts=None, overwrite_additive_facts=False):
|
|
|
""" Initialize the provider facts
|
|
|
|
|
|
Args:
|
|
|
facts (dict): local facts to set
|
|
|
+ overwrite_additive_facts (bool): overwrite additive facts
|
|
|
|
|
|
Returns:
|
|
|
dict: The result of merging the provided facts with existing
|
|
@@ -1154,7 +1166,7 @@ class OpenShiftFacts(object):
|
|
|
basestring):
|
|
|
facts_to_set[arg] = module.from_json(facts_to_set[arg])
|
|
|
|
|
|
- new_local_facts = merge_facts(local_facts, facts_to_set)
|
|
|
+ new_local_facts = merge_facts(local_facts, facts_to_set, overwrite_additive_facts)
|
|
|
for facts in new_local_facts.values():
|
|
|
keys_to_delete = []
|
|
|
for fact, value in facts.iteritems():
|
|
@@ -1184,6 +1196,7 @@ def main():
|
|
|
role=dict(default='common', required=False,
|
|
|
choices=OpenShiftFacts.known_roles),
|
|
|
local_facts=dict(default=None, type='dict', required=False),
|
|
|
+ overwrite_additive_facts=dict(default=False, type='bool', required=False),
|
|
|
),
|
|
|
supports_check_mode=True,
|
|
|
add_file_common_args=True,
|
|
@@ -1191,9 +1204,10 @@ def main():
|
|
|
|
|
|
role = module.params['role']
|
|
|
local_facts = module.params['local_facts']
|
|
|
+ overwrite_additive_facts = module.params['overwrite_additive_facts']
|
|
|
fact_file = '/etc/ansible/facts.d/openshift.fact'
|
|
|
|
|
|
- openshift_facts = OpenShiftFacts(role, fact_file, local_facts)
|
|
|
+ openshift_facts = OpenShiftFacts(role, fact_file, local_facts, overwrite_additive_facts)
|
|
|
|
|
|
file_params = module.params.copy()
|
|
|
file_params['path'] = fact_file
|