FIX:use rbd as default backend 83/6483/3
authorgrakiss <grakiss.wanglei@huawei.com>
Wed, 13 Jan 2016 06:39:06 +0000 (14:39 +0800)
committerJustin chi <chigang@huawei.com>
Wed, 13 Jan 2016 13:04:37 +0000 (13:04 +0000)
JIRA:COMPASS-263
  - some testcases use http as backend, so only set default store to rbd

Change-Id: Icd05d7f6926c2e0b607601f6e05a64b52b158aa9
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
deploy/adapters/ansible/roles/ceph-deploy/tasks/ceph_openstack_conf.yml

index ab01026..1e1b586 100644 (file)
@@ -8,7 +8,7 @@
   ignore_errors: True
 
 - name: modify glance-api.conf for ceph
-  shell: ssh -o StrictHostKeyChecking=no {{ item }} -t "sed -i 's/^\(default_store\).*/\1 = rbd/g' /etc/glance/glance-api.conf && sed -i '/^\[glance_store/a stores = rbd\nrbd_store_pool = images\nrbd_store_user = glance\nrbd_store_ceph_conf = /etc/ceph/ceph.conf\nrbd_store_chunk_size = 8\nshow_image_direct_url=True' /etc/glance/glance-api.conf"
+  shell: ssh -o StrictHostKeyChecking=no {{ item }} -t "sed -i 's/^\(default_store\).*/\1 = rbd/g' /etc/glance/glance-api.conf && sed -i '/^\[glance_store/a rbd_store_pool = images\nrbd_store_user = glance\nrbd_store_ceph_conf = /etc/ceph/ceph.conf\nrbd_store_chunk_size = 8\nshow_image_direct_url=True' /etc/glance/glance-api.conf"
   with_items:
     - "{{ groups['controller'] }}"
   tags: