Fix cinder CLI parameters for default-type-set

The arguments that the Cinder CLI takes are reversed
from what this doc currently states.

$ cinder --os-volume-api-version 3.62 default-type-set
usage: cinder default-type-set <volume_type> <project_id>
error: the following arguments are required: <volume_type>, <project_id>

Change-Id: I72df8ed5b1d805e0596ba3d13ce28b29accedcae
This commit is contained in:
Eric Harney 2023-08-23 14:47:08 -04:00
parent 963ede4dd7
commit ac0f9853b6
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ Other end user impact
There will be a new set of commands in the *python-cinderclient* to match the
new REST API endpoints:
* Set default: ``cinder default-type-set <project-id> <type-name>``
* Set default: ``cinder default-type-set <type-name> <project-id>``
* Unset default: ``cinder default-type-unset <project-id>``