diff options
author | Giulio Fidente <gfidente@redhat.com> | 2017-08-28 09:56:18 +0200 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2017-08-30 12:49:43 +0000 |
commit | e3a6216182861a017bbb3524ea9c729f8f2b169a (patch) | |
tree | eb945d7dee5960b538a111cc0bd2e2241d55d2b5 /manifests/profile/pacemaker/cinder | |
parent | e6f31aa6a8d88bc0b0b0f7ae44a8dad1b16d6a50 (diff) |
Add /etc/ceph into pacemaker bundles
We missed to mount the Ceph config files into the docker/pacemaker
profiles.
Change-Id: I23b6890b4cf7f1e6fe84b6be280dde82218275fc
Closes-Bug: #1713421
(cherry picked from commit b18ae72c6aaad9eb98d7e4490a6572441f63b9a1)
Diffstat (limited to 'manifests/profile/pacemaker/cinder')
-rw-r--r-- | manifests/profile/pacemaker/cinder/backup_bundle.pp | 5 | ||||
-rw-r--r-- | manifests/profile/pacemaker/cinder/volume_bundle.pp | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/manifests/profile/pacemaker/cinder/backup_bundle.pp b/manifests/profile/pacemaker/cinder/backup_bundle.pp index 2a82c3e..9c897af 100644 --- a/manifests/profile/pacemaker/cinder/backup_bundle.pp +++ b/manifests/profile/pacemaker/cinder/backup_bundle.pp @@ -134,6 +134,11 @@ class tripleo::profile::pacemaker::cinder::backup_bundle ( 'target-dir' => '/var/log/cinder', 'options' => 'rw', }, + 'ceph-cfg-dir' => { + 'source-dir' => '/etc/ceph', + 'target-dir' => '/etc/ceph', + 'options' => 'ro', + }, }, } } diff --git a/manifests/profile/pacemaker/cinder/volume_bundle.pp b/manifests/profile/pacemaker/cinder/volume_bundle.pp index 8d58036..2b0411f 100644 --- a/manifests/profile/pacemaker/cinder/volume_bundle.pp +++ b/manifests/profile/pacemaker/cinder/volume_bundle.pp @@ -134,6 +134,11 @@ class tripleo::profile::pacemaker::cinder::volume_bundle ( 'target-dir' => '/var/log/cinder', 'options' => 'rw', }, + 'ceph-cfg-dir' => { + 'source-dir' => '/etc/ceph', + 'target-dir' => '/etc/ceph', + 'options' => 'ro', + }, }, } } |