JIRA: COMPASS-85
- try to gather keys manually before next operation
Change-Id: I32a7e79488813c42b5ead0f08675cf346c81eb54
Signed-off-by: graiss <grakiss.wanglei@huawei.com>
TIMEOUT=10
-export PACKAGE_URL=${PACKAGE_URL:-http://58.251.166.184:9999}
+export PACKAGE_URL=${PACKAGE_URL:-http://205.177.226.235:9999}
#begin: package download
export CENTOS_BASE=${CENTOS_BASE:-$PACKAGE_URL/centos_base.iso}
- name: create monitor node in controller group
shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy --overwrite-conf mon create-initial
+- name: gather keys
+ shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy gatherkeys {{ ceph_cluster_hosts.stdout_lines[0] }}
+ ignore_errors: True
+
- name: copy create_osd.sh to host1
copy: src=create_osd.sh dest=~/create_osd.sh mode=0777
tags:
- name: create monitor node in controller group
shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy --overwrite-conf mon create-initial
+- name: gather keys
+ shell: cd {{ ceph_cluster_dir[0] }} && ceph-deploy gatherkeys {{ ceph_cluster_hosts.stdout_lines[0] }}
+ ignore_errors: True
+
- name: copy create_osd.sh to host1
copy: src=create_osd.sh dest=~/create_osd.sh mode=0777
tags:
- name: load loop.yml
include: loop.yml
- when: status.stat.isblk == False
+ when: status.stat.exists == False or status.stat.isblk == False
- name: load real.yml
include: real.yml
- when: status.stat.isblk == True
+ when: status.stat.exists == True and status.stat.isblk == True
- name: upload cinder-volume configuration
template: src=cinder.conf dest=/etc/cinder/cinder.conf