diff options
author | 2017-09-20 14:31:14 +0800 | |
---|---|---|
committer | 2017-10-26 16:38:13 +0800 | |
commit | d0b985617d8a167147157a70b448db43c50e6474 (patch) | |
tree | df075c5be1df13864b405b78a91d6c194328dd26 /xci/config | |
parent | f2727f7ab48423e3950a42af96de60b2e1b7abfb (diff) |
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 <wutianwei1@huawei.com>
Diffstat (limited to 'xci/config')
-rwxr-xr-x | xci/config/user-vars | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xci/config/user-vars b/xci/config/user-vars index 7c99ee9d..e9980e34 100755 --- a/xci/config/user-vars +++ b/xci/config/user-vars @@ -21,6 +21,7 @@ # export XCI_FLAVOR="ha" #------------------------------------------------------------------------------- export XCI_FLAVOR=${XCI_FLAVOR:-aio} +export XCI_CEPH_ENABLED=${XCI_CEPH_ENABLED:-false} #------------------------------------------------------------------------------- # Set Paths to where git repositories of XCI Components will be cloned |