Enable upstream Cinder volume backup/restore capabilities

To workaround an upstream bug in rbd code, we need to create an
empty file /etc/ceph/ceph.client.None.keyring in order to do cinder
backup and restore. This file is created in cinder manifest when
ceph backend is enabled.

Story: 2003115
Task: 26797

Change-Id: I43388d5e1be2e37e32e88cce718034dbf58f53fc
Signed-off-by: Wei Zhou <wei.zhou@windriver.com>
This commit is contained in:
Wei Zhou 2018-09-28 16:26:20 -04:00
parent be0ea9d20c
commit 66afbaf4a5
1 changed files with 10 additions and 0 deletions

View File

@ -474,6 +474,16 @@ define openstack::cinder::backend::ceph(
rbd_user => $rbd_user,
rbd_ceph_conf => $rbd_ceph_conf,
}
# To workaround an upstream bug in rbd code, we need to create
# an empty file /etc/ceph/ceph.client.None.keyring in order to
# do cinder backup and restore.
file { "/etc/ceph/ceph.client.None.keyring":
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
}
} else {
cinder_config {
"${backend_name}/volume_backend_name": ensure => absent;