ghanshyam | 933d982 | 2017-03-13 06:09:02 +0000 | [diff] [blame] | 1 | ================================= |
| 2 | Microversion Testing With Tempest |
| 3 | ================================= |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 4 | |
ghanshyam | 933d982 | 2017-03-13 06:09:02 +0000 | [diff] [blame] | 5 | Many OpenStack Services provide their APIs with `microversion`_ |
| 6 | support and want to test them in Tempest. |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 7 | |
ghanshyam | 933d982 | 2017-03-13 06:09:02 +0000 | [diff] [blame] | 8 | .. _microversion: http://specs.openstack.org/openstack/api-wg/guidelines/microversion_specification.html |
| 9 | |
| 10 | This document covers how to test microversions for each project and |
| 11 | whether tests should live in Tempest or on project side. |
| 12 | |
| 13 | Tempest Scope For Microversion Testing |
| 14 | """""""""""""""""""""""""""""""""""""" |
| 15 | APIs microversions for any OpenStack service grow rapidly and |
| 16 | testing each and every microversion in Tempest is not feasible and |
| 17 | efficient way. |
| 18 | Also not every API microversion changes the complete system behavior |
| 19 | and many of them only change the API or DB layer to accept and return more |
| 20 | data on API. |
| 21 | |
| 22 | Tempest is an integration test suite, but not all API microversion testing fall under this category. |
| 23 | As a result, Tempest mainly covers integration test cases for microversions, Other testing coverage |
| 24 | for microversion should be hosted on project side as functional tests or via Tempest plugin as per |
| 25 | project guidelines. |
| 26 | |
| 27 | .. note:: Integration tests are those tests which involve more than one service to |
| 28 | verify the expected behavior by single or combination of API requests. |
| 29 | If a test is just to verify the API behavior as success and failure cases |
| 30 | or verify its expected response object, then it does not fall under integration |
| 31 | tests. |
| 32 | |
| 33 | Tempest will cover only integration testing of applicable microversions with |
| 34 | below exceptions: |
| 35 | |
| 36 | #. Test covers a feature which is important for interoperability. This covers tests requirement |
| 37 | from Defcore. |
| 38 | #. Test needed to fill Schema gaps. |
| 39 | Tempest validates API responses with defined JSON schema. API responses can be different on |
| 40 | each microversion and the JSON schemas need to be defined separately for the microversion. |
| 41 | While implementing new integration tests for a specific microversion, there |
| 42 | may be a gap in the JSON schemas (caused by previous microversions) implemented |
| 43 | in Tempest. |
| 44 | Filling that gap while implementing the new integration test cases is not efficient due to |
| 45 | many reasons: |
| 46 | |
| 47 | * Hard to review |
| 48 | * Sync between multiple integration tests patches which try to fill the same schema gap at same |
| 49 | time |
| 50 | * Might delay the microversion change on project side where project team wants Tempest |
| 51 | tests to verify the results. |
| 52 | |
| 53 | Tempest will allow to fill the schema gaps at the end of each cycle, or more |
| 54 | often if required. |
| 55 | Schema gap can be filled with testing those with a minimal set of tests. Those |
| 56 | tests might not be integration tests and might be already covered on project |
| 57 | side also. |
| 58 | This exception is needed because: |
| 59 | |
| 60 | * Allow to create microversion response schema in Tempest at the same time that projects are |
| 61 | implementing their API microversions. This will make implementation easier for adding |
| 62 | required tests before a new microversion change can be merged in the corresponding project |
| 63 | and hence accelerate the development of microversions. |
| 64 | * New schema must be verified by at least one test case which exercises such schema. |
| 65 | |
| 66 | For example: |
| 67 | If any projects implemented 4 API microversion say- v2.3, v2.4, v2.5, v2.6 |
| 68 | Assume microversion v2.3, v2.4, v2.6 change the API Response which means Tempest |
| 69 | needs to add JSON schema for v2.3, v2.4, v2.6. |
| 70 | In that case if only 1 or 2 tests can verify all new schemas then we do not need |
| 71 | separate tests for each new schemas. In worst case, we have to add 3 separate tests. |
| 72 | #. Test covers service behavior at large scale with involvement of more deep layer like hypervisor |
| 73 | etc not just API/DB layer. This type of tests will be added case by case basis and |
| 74 | with project team consultation about why it cannot be covered on project side and worth to test |
| 75 | in Tempest. |
| 76 | |
| 77 | Project Scope For Microversion Testing |
| 78 | """""""""""""""""""""""""""""""""""""" |
| 79 | All microversions testing which are not covered under Tempest as per above section, should be |
| 80 | tested on project side as functional tests or as Tempest plugin as per project decision. |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 81 | |
| 82 | |
| 83 | Configuration options for Microversion |
| 84 | """""""""""""""""""""""""""""""""""""" |
| 85 | |
| 86 | * Add configuration options for specifying test target Microversions. |
| 87 | We need to specify test target Microversions because the supported |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 88 | Microversions may be different between OpenStack clouds. For operating |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 89 | multiple Microversion tests in a single Tempest operation, configuration |
| 90 | options should represent the range of test target Microversions. |
| 91 | New configuration options are: |
Matt Riedemann | 3ea70c2 | 2016-06-08 08:55:58 -0400 | [diff] [blame] | 92 | |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 93 | * min_microversion |
| 94 | * max_microversion |
| 95 | |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 96 | Those should be defined under respective section of each service. |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 97 | For example: |
| 98 | |
| 99 | .. code-block:: ini |
Masayuki Igawa | e63cf0f | 2016-05-25 10:25:21 +0900 | [diff] [blame] | 100 | |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 101 | [compute] |
| 102 | min_microversion = None |
| 103 | max_microversion = latest |
| 104 | |
| 105 | |
| 106 | How To Implement Microversion Tests |
| 107 | """"""""""""""""""""""""""""""""""" |
| 108 | |
ghanshyam | 933d982 | 2017-03-13 06:09:02 +0000 | [diff] [blame] | 109 | Tempest provides stable interfaces to test API Microversion. |
| 110 | For Details, see: `API Microversion testing Framework`_ |
| 111 | This document explains how to implement Microversion tests using those |
| 112 | interfaces. |
| 113 | |
chenxing | e98720a | 2017-07-19 03:42:23 +0000 | [diff] [blame] | 114 | .. _API Microversion testing Framework: https://docs.openstack.org/tempest/latest/library/api_microversion_testing.html |
ghanshyam | 933d982 | 2017-03-13 06:09:02 +0000 | [diff] [blame] | 115 | |
| 116 | |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 117 | Step1: Add skip logic based on configured Microversion range |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 118 | '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' |
| 119 | |
| 120 | Add logic to skip the tests based on Tests class and configured Microversion |
| 121 | range. |
| 122 | api_version_utils.check_skip_with_microversion function can be used |
Tong Liu | e0a3b8e | 2016-03-24 20:32:07 +0000 | [diff] [blame] | 123 | to automatically skip the tests which do not fall under configured |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 124 | Microversion range. |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 125 | For example: |
| 126 | |
| 127 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 128 | |
| 129 | class BaseTestCase1(api_version_utils.BaseMicroversionTest): |
| 130 | |
| 131 | [..] |
| 132 | @classmethod |
| 133 | def skip_checks(cls): |
| 134 | super(BaseTestCase1, cls).skip_checks() |
| 135 | api_version_utils.check_skip_with_microversion(cls.min_microversion, |
| 136 | cls.max_microversion, |
| 137 | CONF.compute.min_microversion, |
| 138 | CONF.compute.max_microversion) |
| 139 | |
| 140 | Skip logic can be added in tests base class or any specific test class depends on |
| 141 | tests class structure. |
| 142 | |
| 143 | Step2: Selected API request microversion |
| 144 | '''''''''''''''''''''''''''''''''''''''' |
| 145 | |
| 146 | Select appropriate Microversion which needs to be used |
| 147 | to send with API request. |
| 148 | api_version_utils.select_request_microversion function can be used |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 149 | to select the appropriate Microversion which will be used for API request. |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 150 | For example: |
| 151 | |
| 152 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 153 | |
| 154 | @classmethod |
| 155 | def resource_setup(cls): |
| 156 | super(BaseTestCase1, cls).resource_setup() |
| 157 | cls.request_microversion = ( |
| 158 | api_version_utils.select_request_microversion( |
| 159 | cls.min_microversion, |
| 160 | CONF.compute.min_microversion)) |
| 161 | |
| 162 | |
| 163 | Step3: Set Microversion on Service Clients |
| 164 | '''''''''''''''''''''''''''''''''''''''''' |
| 165 | |
| 166 | Microversion selected by Test Class in previous step needs to be set on |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 167 | service clients so that APIs can be requested with selected Microversion. |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 168 | |
| 169 | Microversion can be defined as global variable on service clients which |
| 170 | can be set using fixture. |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 171 | Also Microversion header name needs to be defined on service clients which |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 172 | should be constant because it is not supposed to be changed by project |
| 173 | as per API contract. |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 174 | For example: |
| 175 | |
| 176 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 177 | |
| 178 | COMPUTE_MICROVERSION = None |
| 179 | |
| 180 | class BaseClient1(rest_client.RestClient): |
| 181 | api_microversion_header_name = 'X-OpenStack-Nova-API-Version' |
| 182 | |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 183 | Now test class can set the selected Microversion on required service clients |
| 184 | using fixture which can take care of resetting the same once tests is completed. |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 185 | For example: |
| 186 | |
| 187 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 188 | |
| 189 | def setUp(self): |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 190 | super(BaseTestCase1, self).setUp() |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 191 | self.useFixture(api_microversion_fixture.APIMicroversionFixture( |
| 192 | self.request_microversion)) |
| 193 | |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 194 | Service clients needs to add set Microversion in API request header which |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 195 | can be done by overriding the get_headers() method of rest_client. |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 196 | For example: |
| 197 | |
| 198 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 199 | |
| 200 | COMPUTE_MICROVERSION = None |
| 201 | |
| 202 | class BaseClient1(rest_client.RestClient): |
| 203 | api_microversion_header_name = 'X-OpenStack-Nova-API-Version' |
| 204 | |
| 205 | def get_headers(self): |
| 206 | headers = super(BaseClient1, self).get_headers() |
| 207 | if COMPUTE_MICROVERSION: |
| 208 | headers[self.api_microversion_header_name] = COMPUTE_MICROVERSION |
| 209 | return headers |
| 210 | |
| 211 | |
| 212 | Step4: Separate Test classes for each Microversion |
| 213 | '''''''''''''''''''''''''''''''''''''''''''''''''' |
| 214 | |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 215 | This is last step to implement Microversion test class. |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 216 | |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 217 | For any Microversion tests, basically we need to implement a |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 218 | separate test class. In addition, each test class defines its |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 219 | Microversion range with class variable like min_microversion |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 220 | and max_microversion. Tests will be valid for that defined range. |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 221 | If that range is out of configured Microversion range then, test |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 222 | will be skipped. |
| 223 | |
Matt Riedemann | 3ea70c2 | 2016-06-08 08:55:58 -0400 | [diff] [blame] | 224 | .. note:: Microversion testing is supported at test class level not at |
| 225 | individual test case level. |
| 226 | |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 227 | For example: |
| 228 | |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 229 | Below test is applicable for Microversion from 2.2 till 2.9: |
| 230 | |
| 231 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 232 | |
| 233 | class BaseTestCase1(api_version_utils.BaseMicroversionTest, |
| 234 | tempest.test.BaseTestCase): |
| 235 | |
| 236 | [..] |
| 237 | |
| 238 | |
| 239 | class Test1(BaseTestCase1): |
| 240 | min_microversion = '2.2' |
| 241 | max_microversion = '2.9' |
| 242 | |
| 243 | [..] |
| 244 | |
Yushiro FURUKAWA | 836361d | 2016-09-30 23:26:58 +0900 | [diff] [blame] | 245 | Below test is applicable for Microversion from 2.10 till latest: |
| 246 | |
| 247 | .. code-block:: python |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 248 | |
| 249 | class Test2(BaseTestCase1): |
| 250 | min_microversion = '2.10' |
| 251 | max_microversion = 'latest' |
| 252 | |
| 253 | [..] |
| 254 | |
| 255 | |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 256 | Notes about Compute Microversion Tests |
Masayuki Igawa | e63cf0f | 2016-05-25 10:25:21 +0900 | [diff] [blame] | 257 | """""""""""""""""""""""""""""""""""""" |
| 258 | |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 259 | Some of the compute Microversion tests have been already implemented |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 260 | with the Microversion testing framework. So for further tests only |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 261 | step 4 is needed. |
| 262 | |
| 263 | Along with that JSON response schema might need versioning if needed. |
| 264 | |
| 265 | Compute service clients strictly validate the response against defined JSON |
| 266 | schema and does not allow additional elements in response. |
Tong Liu | e0a3b8e | 2016-03-24 20:32:07 +0000 | [diff] [blame] | 267 | So if that Microversion changed the API response then schema needs to be versioned. |
| 268 | New JSON schema file needs to be defined with new response attributes and service |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 269 | client methods will select the schema based on requested microversion. |
| 270 | |
Tong Liu | e0a3b8e | 2016-03-24 20:32:07 +0000 | [diff] [blame] | 271 | If Microversion tests are implemented randomly meaning not |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 272 | in sequence order(v2.20 tests added and previous Microversion tests are not yet added) |
Tong Liu | e0a3b8e | 2016-03-24 20:32:07 +0000 | [diff] [blame] | 273 | then, still schema might need to be version for older Microversion if they changed |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 274 | the response. |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 275 | This is because Nova Microversion includes all the previous Microversions behavior. |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 276 | |
| 277 | For Example: |
ghanshyam | e560728 | 2016-03-24 17:22:10 +0900 | [diff] [blame] | 278 | Implementing the v2.20 Microversion tests before v2.9 and 2.19- |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 279 | v2.20 API request will respond as latest behavior of Nova till v2.20, |
| 280 | and in v2.9 and 2.19, server response has been changed so response schema needs |
Tong Liu | e0a3b8e | 2016-03-24 20:32:07 +0000 | [diff] [blame] | 281 | to be versioned accordingly. |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 282 | |
| 283 | That can be done by using the get_schema method in below module: |
| 284 | |
| 285 | The base_compute_client module |
| 286 | '''''''''''''''''''''''''''''' |
| 287 | |
| 288 | .. automodule:: tempest.lib.services.compute.base_compute_client |
| 289 | :members: |
| 290 | |
| 291 | |
| 292 | Microversion tests implemented in Tempest |
| 293 | """"""""""""""""""""""""""""""""""""""""" |
| 294 | |
| 295 | * Compute |
| 296 | |
| 297 | * `2.1`_ |
| 298 | |
Chandan Kumar | 7664afe | 2017-07-28 18:59:33 +0530 | [diff] [blame] | 299 | .. _2.1: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id1 |
ghanshyam | bd460ac | 2016-03-16 16:28:56 +0900 | [diff] [blame] | 300 | |
| 301 | * `2.2`_ |
| 302 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 303 | .. _2.2: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id2 |
ghanshyam | ba48c90 | 2016-04-15 13:42:35 +0900 | [diff] [blame] | 304 | |
| 305 | * `2.10`_ |
| 306 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 307 | .. _2.10: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id9 |
Matt Riedemann | 3ea70c2 | 2016-06-08 08:55:58 -0400 | [diff] [blame] | 308 | |
| 309 | * `2.20`_ |
| 310 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 311 | .. _2.20: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id18 |
Eli Qiao | e07eacc | 2016-03-03 13:49:37 +0800 | [diff] [blame] | 312 | |
| 313 | * `2.25`_ |
| 314 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 315 | .. _2.25: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#maximum-in-mitaka |
Matt Riedemann | 3e4a46a | 2016-07-27 14:41:32 -0400 | [diff] [blame] | 316 | |
Artom Lifshitz | fc8f8e6 | 2016-04-13 11:08:32 +0000 | [diff] [blame] | 317 | * `2.32`_ |
| 318 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 319 | .. _2.32: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id29 |
Artom Lifshitz | fc8f8e6 | 2016-04-13 11:08:32 +0000 | [diff] [blame] | 320 | |
Matt Riedemann | 3e4a46a | 2016-07-27 14:41:32 -0400 | [diff] [blame] | 321 | * `2.37`_ |
| 322 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 323 | .. _2.37: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id34 |
Matt Riedemann | 07845fa | 2017-01-30 20:18:08 -0500 | [diff] [blame] | 324 | |
| 325 | * `2.42`_ |
| 326 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 327 | .. _2.42: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#maximum-in-ocata |
ghanshyam | 58fbcd0 | 2017-03-13 04:37:17 +0000 | [diff] [blame] | 328 | |
Sergey Nikitin | 8654e5b | 2017-06-04 22:09:56 +0400 | [diff] [blame] | 329 | * `2.47`_ |
| 330 | |
shangxiaobj | 20e512b | 2017-08-14 00:12:40 -0700 | [diff] [blame] | 331 | .. _2.47: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id42 |
Sergey Nikitin | 8654e5b | 2017-06-04 22:09:56 +0400 | [diff] [blame] | 332 | |
ghanshyam | 850f14d | 2017-08-01 08:37:25 +0000 | [diff] [blame] | 333 | * `2.48`_ |
Sergey Nikitin | 0cb4f22 | 2017-02-03 13:16:33 +0400 | [diff] [blame] | 334 | |
ghanshyam | 850f14d | 2017-08-01 08:37:25 +0000 | [diff] [blame] | 335 | .. _2.48: https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id43 |
Sergey Nikitin | 0cb4f22 | 2017-02-03 13:16:33 +0400 | [diff] [blame] | 336 | |
ghanshyam | 58fbcd0 | 2017-03-13 04:37:17 +0000 | [diff] [blame] | 337 | * Volume |
| 338 | |
| 339 | * `3.3`_ |
| 340 | |
ghanshyam | c9f271d | 2017-08-30 10:14:23 +0300 | [diff] [blame] | 341 | .. _3.3: https://docs.openstack.org/cinder/latest/contributor/api_microversion_history.html#id4 |