From 89988770210ec10fb61c3011abc909b72841f435 Mon Sep 17 00:00:00 2001 From: Eduardo Gonzalez Date: Wed, 1 Aug 2018 12:20:27 +0200 Subject: [PATCH] Fix ceph gates Cinder removed some parameters from the API. Openstack client is not updated yet and failing. Revert this change once is fixed. Change-Id: Ie8feb03e9a07a6486a8b375d3304c9e6f1f8b890 --- tools/setup_gate.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/setup_gate.sh b/tools/setup_gate.sh index 75ebd937c3..b6ddd4b23a 100755 --- a/tools/setup_gate.sh +++ b/tools/setup_gate.sh @@ -132,7 +132,9 @@ function sanity_check { # If the status is not ACTIVE, print info and exit 1 nova --debug show kolla_boot_test | awk '{buf=buf"\n"$0} $2=="status" && $4!="ACTIVE" {failed="yes"}; END {if (failed=="yes") {print buf; exit 1}}' if echo $ACTION | grep -q "ceph"; then - openstack volume create --size 2 test_volume +#TODO(egonzalez): Recover openstack cli command once volume calls are fixed. +# openstack volume create --size 2 test_volume + cinder create --name test_volume 2 openstack server add volume kolla_boot_test test_volume --device /dev/vdb fi }