
It is possible to setup one way or two way replication between pools. rbd-mirror daemon is responsible for pulling image updates from the remote peer cluster and applying them to the image within the local cluster. This patch allows to enable this daemon as part of the deployment, but the actual configuration between sites remains out of scope for the deployment script. This work aims to support [1]. [1] https://review.opendev.org/c/openstack/cinder-tempest-plugin/+/948293 Change-Id: Id1a66c244b9be33b6df63e6504500c77d59a1b9d Signed-off-by: Francesco Pantano <fpantano@redhat.com>
18 lines
740 B
Plaintext
18 lines
740 B
Plaintext
# Plug-in overrides
|
|
|
|
ENABLE_CEPH_CINDER=$(trueorfalse True ENABLE_CEPH_CINDER)
|
|
ENABLE_CEPH_C_BAK=$(trueorfalse True ENABLE_CEPH_C_BAK)
|
|
ENABLE_CEPH_GLANCE=$(trueorfalse True ENABLE_CEPH_GLANCE)
|
|
ENABLE_CEPH_MANILA=$(trueorfalse True ENABLE_CEPH_MANILA)
|
|
ENABLE_CEPH_NOVA=$(trueorfalse True ENABLE_CEPH_NOVA)
|
|
# Do not enable RGW by default as RGW is not tested in upstream CI.
|
|
ENABLE_CEPH_RGW=$(trueorfalse False ENABLE_CEPH_RGW)
|
|
ENABLE_CEPH_RBD_MIRROR=$(trueorfalse False ENABLE_CEPH_RBD_MIRROR)
|
|
|
|
CINDER_DRIVER=${CINDER_DRIVER:-ceph}
|
|
CINDER_ENABLED_BACKENDS=${CINDER_ENABLED_BACKENDS:-ceph}
|
|
REMOTE_CEPH=$(trueorfalse False REMOTE_CEPH)
|
|
if [[ $ENABLE_CEPH_MANILA == "True" ]]; then
|
|
MANILA_CEPH_DRIVER=${MANILA_CEPH_DRIVER:-cephfsnative}
|
|
fi
|