diff options
author | Jan Provaznik <jprovazn@redhat.com> | 2017-07-11 12:21:19 +0200 |
---|---|---|
committer | Jan Provaznik <jprovazn@redhat.com> | 2017-08-11 12:48:32 +0200 |
commit | 897d594633210379f32f234854dde687a7a77f8c (patch) | |
tree | f737449f926af534296732c95aa1f25247c57286 /manifests/profile/base/ceph | |
parent | 4b2533863244ff1c667354364557a1f9c554d2f9 (diff) |
Do not create fs and server side key from manila
Both fs and key are handled by ceph-ansible, move fs and key
creation out of manila manifest to assure that it works with and
without ceph-ansbile.
Client-side manila key is created from ceph-mds and ceph-external
templates in I6308a317ffe0af244396aba5197c85e273e69f68.
Depends-On: I6308a317ffe0af244396aba5197c85e273e69f68
Partially-Implements: blueprint nfs-ganesha
Change-Id: I2b5567a39ac8737e80758b705818cc1807dc8bf1
Diffstat (limited to 'manifests/profile/base/ceph')
-rw-r--r-- | manifests/profile/base/ceph/mds.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/manifests/profile/base/ceph/mds.pp b/manifests/profile/base/ceph/mds.pp index 9cc2b20..d675563 100644 --- a/manifests/profile/base/ceph/mds.pp +++ b/manifests/profile/base/ceph/mds.pp @@ -32,4 +32,9 @@ class tripleo::profile::base::ceph::mds ( if $step >= 3 { include ::ceph::profile::mds } + + # when deploying mds, create also cephfs which is used by manila + if $step >= 4 { + include ::ceph::profile::fs + } } |