Disable ceph auth in nova/cinder overrides

To enable boot from volume instances in containers setup we currently
need to disable authentication for ceph.  This involves dropping nova
config options libvirt/rbd_user, libvirt/rbd_secret_uuid and cinder
backend config option rbd_user.

This will need to be revised in the future if authentication is
enabled.

Story: 2003909
Task: 27081
Change-Id: If6690ddaf7424a5e103f5aca2c51d845e4ea0c91
Signed-off-by: Gerry Kopec <Gerry.Kopec@windriver.com>
This commit is contained in:
Gerry Kopec 2018-11-26 18:00:04 -05:00 committed by Gerry Kopec
parent f17aa108b0
commit ae4a814e49
2 changed files with 2 additions and 1 deletions

View File

@ -170,7 +170,6 @@ class CinderHelm(openstack.OpenstackBaseHelm):
'rbd_ceph_conf':
(constants.CEPH_CONF_PATH +
constants.SB_TYPE_CEPH_CONF_FILENAME),
'rbd_user': 'cinder',
}
return conf_backends

View File

@ -106,6 +106,8 @@ class NovaHelm(openstack.OpenstackBaseHelm):
'live_migration_completion_timeout': 180,
'live_migration_permit_auto_converge': True,
'mem_stats_period_seconds': 0,
'rbd_secret_uuid': None,
'rbd_user': None,
# Allow up to 1 day for resize confirm
'remove_unused_resized_minimum_age_seconds': 86400
},