d7d5459441
A storage backend has to be selected when deploying manila, otherwise the manila-share service will fail to start. For this, we have some environment files specifying the configuration for different storage backends. We need a dockerized version for this environment files. In this patch set we add those environment files. Change-Id: I9886016b02bec26699af1f8165d7b0702dfe8b9b Partial-Bug: #1668922
21 lines
910 B
YAML
21 lines
910 B
YAML
# EXPERIMENTAL: The configuration enabled by this environment
|
|
# is not considered production-ready.
|
|
#
|
|
# A Heat environment file which can be used to enable a
|
|
# a Manila CephFS Native driver backend.
|
|
resource_registry:
|
|
OS::TripleO::Services::ManilaApi: ../docker/services/manila-api.yaml
|
|
OS::TripleO::Services::ManilaScheduler: ../docker/services/manila-scheduler.yaml
|
|
# Only manila-share is pacemaker managed:
|
|
OS::TripleO::Services::ManilaShare: ../docker/services/pacemaker/manila-share.yaml
|
|
OS::TripleO::Services::ManilaBackendCephFs: ../puppet/services/manila-backend-cephfs.yaml
|
|
|
|
|
|
parameter_defaults:
|
|
ManilaCephFSNativeBackendName: cephfsnative
|
|
ManilaCephFSNativeDriverHandlesShareServers: false
|
|
ManilaCephFSNativeCephFSConfPath: '/etc/ceph/ceph.conf'
|
|
ManilaCephFSNativeCephFSAuthId: 'manila'
|
|
ManilaCephFSNativeCephFSClusterName: 'ceph'
|
|
ManilaCephFSNativeCephFSEnableSnapshots: false
|