This is needed so we can set the ceph branch for ceph-deploy
to use via the main yaml which is created via the suite
scheduler.
Signed-off-by: Sandon Van Ness <sandon@inktank.com>
assert isinstance(config, dict), \
"task ceph-deploy only supports a dictionary for configuration"
+ overrides = ctx.config.get('overrides', {})
+ teuthology.deep_merge(config, overrides.get('ceph-deploy', {}))
+
if config.get('branch') is not None:
assert isinstance(config['branch'], dict), 'branch must be a dictionary'