180
180
Displays a list of all floating IP addresses.
185
``nova-manage flavor list``
187
Outputs a list of all active flavors to the screen.
189
``nova-manage flavor list --all``
191
Outputs a list of all flavors (active and inactive) to the screen.
193
``nova-manage flavor create <name> <memory> <vCPU> <local_storage> <flavorID> <(optional) swap> <(optional) RXTX Quota> <(optional) RXTX Cap>``
195
creates a flavor with the following positional arguments:
196
* memory (expressed in megabytes)
198
* local storage (expressed in gigabytes)
199
* flavorid (unique integer)
200
* swap space (expressed in megabytes, defaults to zero, optional)
201
* RXTX quotas (expressed in gigabytes, defaults to zero, optional)
202
* RXTX cap (expressed in gigabytes, defaults to zero, optional)
204
``nova-manage flavor delete <name>``
206
Delete the flavor with the name <name>. This marks the flavor as inactive and cannot be launched. However, the record stays in the database for archival and billing purposes.
208
``nova-manage flavor delete <name> --purge``
210
Purges the flavor with the name <name>. This removes this flavor from the database.
216
The instance_type command is provided as an alias for the flavor command. All the same subcommands and arguments from nova-manage flavor can be used.