diff options
author | 2016-11-14 12:36:27 -0500 | |
---|---|---|
committer | 2016-11-22 12:36:23 -0500 | |
commit | 011c7a4b750b11c138728e5537a6e8f65a5d43fa (patch) | |
tree | b3e1a80f7ebf7f7a2eef52e9322478ad659b9ea0 /lib/undercloud-functions.sh | |
parent | 4f05ece5c264d68b4f3edcbc8dfd9f0138bbea87 (diff) |
Allow passing a device name to ceph
JIRA: APEX-347
Change-Id: Ibc6d141e20faf613e0f6314286b55aff01ce862e
Signed-off-by: Dan Radez <dradez@redhat.com>
(cherry picked from commit e36f790d036c0bfb5d7ed81d656f9bb1f5200a1a)
Diffstat (limited to 'lib/undercloud-functions.sh')
-rwxr-xr-x | lib/undercloud-functions.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/undercloud-functions.sh b/lib/undercloud-functions.sh index 95122980..d0347428 100755 --- a/lib/undercloud-functions.sh +++ b/lib/undercloud-functions.sh @@ -217,6 +217,10 @@ if [[ "$net_isolation_enabled" == "TRUE" ]]; then fi +if [[ -n "${deploy_options_array['ceph_device']}" ]]; then + sed -i '/ExtraConfig/a\\ ceph::profile::params::osds: {\\x27${deploy_options_array['ceph_device']}\\x27: {}}' opnfv-environment.yaml +fi + sudo sed -i '/CephClusterFSID:/c\\ CephClusterFSID: \\x27$(cat /proc/sys/kernel/random/uuid)\\x27' /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml sudo sed -i '/CephMonKey:/c\\ CephMonKey: \\x27'"\$(ceph-authtool --gen-print-key)"'\\x27' /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml sudo sed -i '/CephAdminKey:/c\\ CephAdminKey: \\x27'"\$(ceph-authtool --gen-print-key)"'\\x27' /usr/share/openstack-tripleo-heat-templates/environments/storage-environment.yaml |