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
This commit is contained in:
Giulio Fidente 2017-08-28 09:56:18 +02:00
parent 0384443835
commit b18ae72c6a
3 changed files with 15 additions and 0 deletions

View File

@ -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',
},
},
}
}

View File

@ -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',
},
},
}
}

View File

@ -129,6 +129,11 @@ class tripleo::profile::pacemaker::manila::share_bundle (
'target-dir' => '/var/log/manila',
'options' => 'rw',
},
'ceph-cfg-dir' => {
'source-dir' => '/etc/ceph',
'target-dir' => '/etc/ceph',
'options' => 'ro',
},
},
}
}