in marketplace/deployer_util/yaml_util.py [0:0]
def add_or_replace(orig, dest):
for key in orig:
if (type(orig[key]) is dict and key in dest and type(dest[key]) is dict):
add_or_replace(orig[key], dest[key])
else:
dest[key] = copy.deepcopy(orig[key])