From f774ecf4f9f44b38f345bb614b72c83b3ec15136 Mon Sep 17 00:00:00 2001 From: Matt Smith Date: Mon, 7 May 2018 16:43:56 -0500 Subject: [PATCH] Changing openrc default Cinder API version to v3 * v3 is a superset of v2 and has been the defacto Cinder version for several years now. * Devstack installs Cinder v3 API by default, so the default environment variables should reflect this. Change-Id: I86e1ae4e020e2be043cf8e190d7959b65b6c093c --- openrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrc b/openrc index 37724c552e..cc8cad406c 100644 --- a/openrc +++ b/openrc @@ -108,5 +108,5 @@ fi # Currently cinderclient needs you to specify the *volume api* version. This # needs to match the config of your catalog returned by Keystone. -export CINDER_VERSION=${CINDER_VERSION:-2} +export CINDER_VERSION=${CINDER_VERSION:-3} export OS_VOLUME_API_VERSION=${OS_VOLUME_API_VERSION:-$CINDER_VERSION}