Browse code

Remove setting of unnecessary tempest config options

Tempest have removed the volume-feature-enabled.api_v1
config options[1] and modified the default value of
volume-feature-enabled.api_v3 to True.

These config options not needed to be set from devstack
side.

[1] https://review.openstack.org/#/c/573135/

Change-Id: Ic35cf4482ab4d3c2e69348ec92568e68f6ea74ee

ghanshyam authored on 2018/10/09 16:39:07
Showing 1 changed files
... ...
@@ -456,9 +456,6 @@ function configure_tempest {
456 456
         TEMPEST_EXTEND_ATTACHED_VOLUME=${TEMPEST_EXTEND_ATTACHED_VOLUME:-True}
457 457
     fi
458 458
     iniset $TEMPEST_CONFIG volume-feature-enabled extend_attached_volume $(trueorfalse False TEMPEST_EXTEND_ATTACHED_VOLUME)
459
-    # TODO(ameade): Remove the api_v3 flag when Mitaka and Liberty are end of life.
460
-    iniset $TEMPEST_CONFIG volume-feature-enabled api_v3 True
461
-    iniset $TEMPEST_CONFIG volume-feature-enabled api_v1 $(trueorfalse False TEMPEST_VOLUME_API_V1)
462 459
     local tempest_volume_min_microversion=${TEMPEST_VOLUME_MIN_MICROVERSION:-None}
463 460
     local tempest_volume_max_microversion=${TEMPEST_VOLUME_MAX_MICROVERSION:-"latest"}
464 461
     # Reset microversions to None where v2 is running which does not support microversion.