While we strive to support all versions of OpenStack, we can only test limited number of versions. The current set:
- 2024.2 Dalmatian
- 2024.1 Caracal
- 2023.2 Bobcat
- 2023.1 Antelope
- Zed
- Yoga
- Wallaby - as the latest version which had BlockStorage v2 API
Name | PHP classes | API definition | Unit tests | Sample files | Integration tests | Documentation |
---|---|---|---|---|---|---|
Block Storage v2 | ✓ | ✓ | ✓ | ✓ | ||
Block Storage v3 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Compute v2 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Identity v2 | ✓ | ✓ | ✓ | |||
Identity v3 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Images v2 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Networking v2 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
Object Storage v1 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
These are the files that reside in ./src/<SERVICE>/<VERSION>
and compose the service layer. Usually this will
be the main Service.php
file, and a host of model files located in Models
directory, relative to the service file.
All PHP files need to abide by PSR standards, and include full phpdoc annotations for all methods - regardless of
visibility.
This is the Api.php
and Params.php
files for each service, which defines the contract between client and API. It outlines all of the
available API operations, along with parameters, methods, URL paths, etc. In order for this to be marked complete, it
must cover 100% of the remote API.
In order for this to be marked complete, each service needs 100% unit test coverage.
In order for this to be marked complete, there needs to be a sample file for every public operation made available to users. If there are many, you can break them up into sub-folders based on the resource type.
In order for this to be marked complete, each sample file needs to be tested against a live API.
In order for this to be marked complete, every public operation needs to be documented with these items:
- the code signature, along with all of its input arguments. Multidimensional arrays like
$options
or$data
need have all their keys defined. All types must be defined. Any required options must be marked. - a human-readable description
- a code sample