~0x44/nova/extdoc

« back to all changes in this revision

Viewing changes to doc/source/man/novamanage.rst

  • Committer: Vishvananda Ishaya
  • Date: 2011-03-08 20:39:58 UTC
  • mfrom: (766 nova)
  • mto: (815.5.6 improve-smoketests)
  • mto: This revision was merged to the branch mainline in revision 835.
  • Revision ID: vishvananda@gmail.com-20110308203958-a3vyub3qsms4ajst
merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
 
180
180
    Displays a list of all floating IP addresses.
181
181
 
 
182
Nova Flavor
 
183
~~~~~~~~~~~
 
184
 
 
185
``nova-manage flavor list``
 
186
 
 
187
    Outputs a list of all active flavors to the screen.
 
188
 
 
189
``nova-manage flavor list --all``
 
190
 
 
191
    Outputs a list of all flavors (active and inactive) to the screen.
 
192
 
 
193
``nova-manage flavor create <name> <memory> <vCPU> <local_storage> <flavorID> <(optional) swap> <(optional) RXTX Quota> <(optional) RXTX Cap>``
 
194
 
 
195
    creates a flavor with the following positional arguments:
 
196
     * memory (expressed in megabytes) 
 
197
     * vcpu(s) (integer)
 
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)
 
203
 
 
204
``nova-manage flavor delete <name>``
 
205
 
 
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.
 
207
 
 
208
``nova-manage flavor delete <name> --purge``
 
209
 
 
210
    Purges the flavor with the name <name>. This removes this flavor from the database.
 
211
 
 
212
 
 
213
Nova Instance_type
 
214
~~~~~~~~~~~~~~~~~~
 
215
 
 
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.
 
217
 
182
218
 
183
219
FILES
184
220
========