From 7aa1fc69c31cf66e824875b24da10d1d6a1941e9 Mon Sep 17 00:00:00 2001 From: Jonathan Herlin Date: Mon, 30 Aug 2021 11:02:51 +0200 Subject: [PATCH] Change default volume API to v3 Volumes v2 API was deprecated in pike and v3(.0) is identical to v2 API. v3 was introduced in Mitaka Change-Id: I38613145ae4234956f36184eb62feb8e95647113 --- adjutant/common/openstack_clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adjutant/common/openstack_clients.py b/adjutant/common/openstack_clients.py index 64988de..0d364fc 100644 --- a/adjutant/common/openstack_clients.py +++ b/adjutant/common/openstack_clients.py @@ -32,7 +32,7 @@ DEFAULT_IMAGE_VERSION = "2" DEFAULT_METERING_VERSION = "2" DEFAULT_OBJECT_STORAGE_VERSION = "1" DEFAULT_ORCHESTRATION_VERSION = "1" -DEFAULT_VOLUME_VERSION = "2" +DEFAULT_VOLUME_VERSION = "3" # Auth session shared by default with all clients client_auth_session = None