Stop testing volume v2 APIs

Cinder decided to remove the v2 APIs[1] in Xena cycle, so
in Tempest we need to modify the tempest-cinder-v2-api job
to run against stable wallaby which is last release where
volume v2 APIs are present.

Also ad deprecation warning at v2 service clients module level
import so that we can remove them once Tempest stop supporting
stable wallaby.

NOTE: we do not need to adjust any tests as we already moved all
the Tempest tests to volume v3 APIs.

Depends-On: https://review.opendev.org/c/openstack/devstack/+/791842

[1] https://wiki.openstack.org/wiki/CinderXenaPTGSummary#Removing_the_Block_Storage_API_v2

Change-Id: I98339f67239cf96d26aa4fa87df692139b36673d
This commit is contained in:
Ghanshyam Mann 2021-05-18 12:32:39 -05:00 committed by Ghanshyam
parent 393e94a604
commit 2f4539d604
3 changed files with 17 additions and 2 deletions

View File

@ -0,0 +1,6 @@
---
deprecations:
- |
Tempest service clients for volume v2 APIs (tempest.lib.services.volume.v2 module)
is deprecated and will be removed once Tempest stop supporting stable wallaby release
which is last release volume v2 APIs are present in cinder.

View File

@ -12,6 +12,8 @@
# License for the specific language governing permissions and limitations under # License for the specific language governing permissions and limitations under
# the License. # the License.
import warnings
from tempest.lib.services.volume.v2.availability_zone_client \ from tempest.lib.services.volume.v2.availability_zone_client \
import AvailabilityZoneClient import AvailabilityZoneClient
from tempest.lib.services.volume.v2.backups_client import BackupsClient from tempest.lib.services.volume.v2.backups_client import BackupsClient
@ -44,3 +46,9 @@ __all__ = ['AvailabilityZoneClient', 'BackupsClient', 'EncryptionTypesClient',
'LimitsClient', 'CapabilitiesClient', 'SchedulerStatsClient', 'LimitsClient', 'CapabilitiesClient', 'SchedulerStatsClient',
'SnapshotManageClient', 'VolumeManageClient', 'TransfersClient', 'SnapshotManageClient', 'VolumeManageClient', 'TransfersClient',
'QuotaClassesClient'] 'QuotaClassesClient']
warnings.warn(
"The tempest.lib.services.volume.v2 module (volume v2 APIs service "
"clients) is deprecated in favor of tempest.lib.services.volume.v3 "
"(volume v3 APIs service clients) and will be removed once Tempest stop "
"supporting stable wallaby.", DeprecationWarning)

View File

@ -408,8 +408,9 @@
- job: - job:
name: tempest-cinder-v2-api name: tempest-cinder-v2-api
parent: devstack-tempest parent: devstack-tempest
branches: # NOTE(gmann): Cinder v2 APIs are available until
- master # stable/wallaby only.
override-checkout: stable/wallaby
description: | description: |
This job runs the cinder API test against v2 endpoint. This job runs the cinder API test against v2 endpoint.
vars: vars: