We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8fa4b commit e557778Copy full SHA for e557778
devsetup/tripleo/ceph.sh
@@ -29,7 +29,13 @@ fi
29
30
cd ci-framework
31
# create block devices on all compute nodes
32
-ansible-playbook -i $INV playbooks/ceph.yml --tags block -e cifmw_num_osds_perhost=2
+# TODO: Remove the condition when playbook migration process
33
+# is completed. More info: https://github.com/openstack-k8s-operators/ci-framework/pull/3154
34
+if [ -f hooks/playbooks/ceph.yml ]; then
35
+ ansible-playbook -i "$INV" hooks/playbooks/ceph.yml --tags block -e cifmw_num_osds_perhost=2
36
+else
37
+ ansible-playbook -i "$INV" playbooks/ceph.yml --tags block -e cifmw_num_osds_perhost=2
38
+fi
39
cd ..
40
41
cat <<EOF > osd_spec.yaml
0 commit comments