From d0b985617d8a167147157a70b448db43c50e6474 Mon Sep 17 00:00:00 2001 From: wutianwei Date: Wed, 20 Sep 2017 14:31:14 +0800 Subject: Integrate ceph in XCI Openstack ansible support to deploy ceph. The purpose of this patch is to configure the ceph, just like we configure other openstack components. The default is to not deploy ceph. If you want to deploy ceph you just need to export XCI_CEPH_ENABLED=true before running xci-deploy.sh. When deployed successfully, the openstack storage will use ceph. Change-Id: Ifd8d16fdce2914b6316842e72bbfd93228ea059d Signed-off-by: wutianwei --- xci/file/ha/ceph.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 xci/file/ha/ceph.yml (limited to 'xci/file/ha/ceph.yml') diff --git a/xci/file/ha/ceph.yml b/xci/file/ha/ceph.yml new file mode 100644 index 00000000..1567c492 --- /dev/null +++ b/xci/file/ha/ceph.yml @@ -0,0 +1,15 @@ +# The infra nodes where the Ceph mon services will run +ceph-mon_hosts: + controller00: + ip: 172.29.236.11 + controller01: + ip: 172.29.236.12 + controller02: + ip: 172.29.236.13 + +# The nodes that the Ceph OSD disks will be running on +ceph-osd_hosts: + compute00: + ip: 172.29.236.14 + compute01: + ip: 172.29.236.15 -- cgit 1.2.3-korg