summaryrefslogtreecommitdiff
path: root/doc/source/commands.rst
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Add missing command objectsRichard Theis2016-03-311-2/+7
| | | | | | Add missing command objects that have command documentation. Change-Id: I2a34cc632c00c7f6bcf6481e6779b79093cd6488
* Aggregate object should be "grouping of compute hosts"Rui Chen2016-03-291-1/+1
| | | | | | | | | | | The describe of Compute "aggregate" in command-objects and commands documents use "a grouping of servers", but exactly that should be a grouping of compute hosts. "server" object in OSC is a virtual machine instance, and server group should be "grouping of servers". Change-Id: Ib034fed15f11fc3e756985b3131a9922129ed6bf Closes-Bug: #1563172 Related-Bug: #1542171
* Merge "[compute] Support restore server"Jenkins2016-03-041-1/+1
|\
| * [compute] Support restore serverjichenjc2016-02-231-1/+1
| | | | | | | | | | | | Server in soft-delete state can be restored, add this command. Change-Id: Id9d7246f89ae65273505f36dcb664996534ae986
* | Add missing command/configuration objectRui Chen2016-02-261-2/+4
|/ | | | | | | | | | Add missing 'command' and 'configuration' object into command object list, add command, module, host commands describe in command-objects, and add 'mask' and 'unmask' options in configuration command details, fix some format issues by the way. Change-Id: Iea80c7b1e413e02e49b9090b9d3cb9c59aab4c38
* update heat object and command docMark Vanderwiel2016-02-251-1/+11
| | | | | | | | | | | | | | | | | Many OpenStack client heat command patches are in progress, seems like good time to also update some of the highlevel doc. Added new objects for orchestration and software openstack orchestration resource type list/show openstack software config create/delete/show/list Added new action for restore openstack stack snapshot create/delete/list/show/restore Added link to CLI reference for complete plugin syntax and details Removed deprecated tasker client Change-Id: I2c94a5981954edcba95f364a0f909c799f1c403b Blueprint: heat-support-python-openstackclient
* Subnet Pool: Add "subnet pool delete" commandTang Chen2016-02-181-0/+1
| | | | | | Change-Id: Ic5ba5effcaea2410421a81da8ffce7c0295179e7 Closes-Bug: 1544587 Partially implements: blueprint neutron-client
* Support "network delete" command in nova networkTang Chen2016-02-141-1/+1
| | | | | | | | | "network delete" command is not implemented in nova network. This patch implements it. Change-Id: I5dac1eed6eb8e67298bb446418835a6ab85c859c Depends-On: I1b59264cd40aaf1062f4e8db233ccb7fd0e95f0e partial-Bug: 1543672
* Add support for triggering an crash dumpxiexs2016-02-051-0/+1
| | | | | | | | | | | | | The triggering crash dump feature is supported by nova [1] and novaclient [2] now, it's time to introduce this feature into OSC correspondingly. [1]The change id is: I6ed777ff637254b4b79417008f9055dd19fc7405 [2]The change id is: If03b1864bbe7074c720b946fc2700bd5d07debc3 Change-Id: I5a411f283fdf0fc3c00380d069848a332c799cdd Closes-Bug: #1538372 Co-Authored-By: Tang Chen <chen.tang@easystack.cn>
* Support listing network availability zonesRichard Theis2016-02-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Update the "os availability zone list" command to support listing network availability zones along with the currently listed compute and volume availability zones. This adds the --network option to the command in order to only list network availability zones. By default, all availability zones are listed. The --long option was also updated to include a "Zone Resource" column which is applicable to network availability zones. Example zone resources include "network" and "router". If the Network API does not support listing availability zones then a warning message will be issued when the --network option is specified. This support requires an updated release of the SDK in order to pull in [1]. [1] https://bugs.launchpad.net/python-openstacksdk/+bug/1532274 Change-Id: I78811d659b793d9d2111ea54665d5fe7e4887264 Closes-Bug: #1534202
* Merge "Remove the Tuskar client"Jenkins2016-01-281-2/+0
|\
| * Remove the Tuskar clientDougal Matthews2016-01-271-2/+0
| | | | | | | | | | | | The Tuskar project is now inactive and has been archived. Change-Id: I4c7cb50560b40ba1bc130be5bdc9446a46b09c24
* | Merge "Use correct terminology for subnets"Jenkins2016-01-271-1/+1
|\ \ | |/ |/|
| * Use correct terminology for subnetsDean Troyer2016-01-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | OpenStack uses 'CIDR' incorrectly in many places. We are not going to perpetuate that usage. The correct name here is simply 'subnet' as the data is the network address for the subnet, in CIDR notation. Also, some additional cleanups as suggested in comments to https://review.openstack.org/#/c/84782 Depends-on: I3c0748074a6511ff92500516b3129886d2476eed Change-Id: Ib44c49dc1739ce7d881432e482dd16f8928eef49
* | Merge "Subnet List"Jenkins2016-01-271-0/+1
|\ \ | |/
| * Subnet ListTerry Howe2016-01-251-0/+1
| | | | | | | | | | | | | | | | Subnet list command Partially implements: blueprint neutron-client Partial-Bug: #1523258 Change-Id: I3c0748074a6511ff92500516b3129886d2476eed
* | Merge "Support listing volume availability zones"Jenkins2016-01-221-1/+1
|\ \ | |/ |/|
| * Support listing volume availability zonesRichard Theis2016-01-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Update the "os availability zone list" command to support listing volume availability zones along with the currently listed compute availability zones. This adds a --compute and --volume option to the command in order to select the availability zones to list. By default, all availability zones are listed. If the Block Storage API does not support listing availability zones then an warning message will be issued. Change-Id: I8159509a41bd1fb1b4e77fdbb512cf64a5ac11a9 Closes-Bug: #1532945
* | Add support to delete the portsSaiKiran2016-01-201-0/+1
| | | | | | | | | | | | | | | | This patch adds "port delete" command to osc. Change-Id: I5c92b2f573249df4e6551506584ccafb4ff290b2 Implements: blueprint neutron-client Partial-Bug: #1519909
* | Doc: Network is supported for extension objectRichard Theis2016-01-151-1/+1
|/ | | | | | | Update extension object documentation to note that network is also supported. Change-Id: Ifcebdb4dc6bf56482700887c09d89ac64eab321c
* Merge "Use Block Storage instead of Volume"Jenkins2016-01-041-1/+1
|\
| * Use Block Storage instead of VolumeXi Yang2015-11-271-1/+1
| | | | | | | | | | | | | | Volume is better to be replaced by Block Storage in the doc. Change-Id: I736669ee01c7385b6e701cb20f4334eff1c49286
* | Router: Add "router list" command using SDKTang Chen2015-12-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add "router list" command. It takes one "--long" option. By default, the command will print router id, name, status, admin state up, distributed, ha and project id. With "--long" option, it will also print routes and external gateway info. Change-Id: I9d21904c41c11ee1fa107f985744878a1dc2f970 Implements: blueprint neutron-client Partial-bug: #1519503
* | Merge "Integrating mistralclient with openstackclient"Jenkins2015-12-081-0/+7
|\ \
| * | Integrating mistralclient with openstackclientLingxian Kong2015-12-011-0/+7
| | | | | | | | | | | | | | | Change-Id: Ie54d7c15366a8272eefa94c0d8d2430428bdc590 Depends-On: Ic099aaec88377a76a17700c33fed944e52ec5633
* | | autodocument commands from plugins using stevedore.sphinxextSteve Martinelli2015-12-011-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | conflicting command names are a painpoint, so is manually updating a list. let's autodocument the commands that are being use by existing osc supporters. Change-Id: If37d81dfd57cc79803668b64be1ccd776e319572
* | | Add "openstack server unshelve" into OSCxiexs2015-11-281-1/+2
| |/ |/| | | | | | | | | | | | | The unshelve operation is not supported by OSC, and this patch tries to add it. Change-Id: Ic60a4616cb63ad21c1a3c8e02611da8bad3a8bd0 Implements: blueprint introduce-shelve-into-osc
* | Change 'Object Store' to 'Object Storage'Xi Yang2015-11-261-2/+2
| | | | | | | | | | | | | | Because the official documents uses 'Object Storage', so change it in this project. Change-Id: I87c0996b48c452b3ff619b8214676ae377e6d0af
* | Merge "Add "openstack server shelve" into OSC"Jenkins2015-11-241-0/+1
|\ \
| * | Add "openstack server shelve" into OSCxiexs2015-11-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Currently, the shelve operation is not supported by OSC. So, this patch attempts to add it into OSC. Change-Id: I92545300bef006a069338168d2de800e8a58af69 Implements: blueprint introduce-shelve-into-osc
* | | Doc: Update and add IP addressRichard Theis2015-11-241-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the 'ip floating' command documentation file name. Add missing command list documentation for the 'ip fixed' and 'ip floating pool' commands. In addition, update the command description and argument help to fix minor issues and use consistent terminology. And finally, cleanup the Network command object formatting. Change-Id: I0168891bc674c9f0d4df4062f7e93f497dc8fe6f
* | | Enable "openstack server resume" command to take multiple servers.Tang Chen2015-11-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Current "openstack server resume" command could only resume one server. Improve it to be able to handle more than one servers. Also improve the doc to reflect the new feature. Change-Id: I726eb86bfa3df3a9911f45770e6641264dbc1e0b Implements: blueprint cmd-with-multi-servers
* | | Enable "openstack server suspend" command to take multiple servers.Tang Chen2015-11-241-1/+1
|/ / | | | | | | | | | | | | | | | | Current "openstack server suspend" command could only suspend one server. Improve it to be able to handle more than one servers. Also improve the doc to reflect the new feature. Change-Id: Ic0417ee28f46c9198a35744c0180342e61966b26 Implements: blueprint cmd-with-multi-servers
* | Enable "openstack server unlock" command to take multiple servers.Tang Chen2015-11-131-1/+1
| | | | | | | | | | | | | | | | | | Current "openstack server unlock" command could only unlock one server. Improve it to be able to handle more than one servers. Also improve the doc to reflect the new feature. Change-Id: Ibf57b2021a504da950a491d63139a438087aed0b Implements: blueprint cmd-with-multi-servers
* | Enable "openstack server lock" command to take multiple servers.Tang Chen2015-11-131-1/+1
| | | | | | | | | | | | | | | | | | Current "openstack server lock" command could only lock one server. Improve it to be able to handle more than one servers. Also improve the doc to reflect the new feature. Change-Id: Ifcf103b1c32e6c547ac09f688b887b1c03f92b09 Implements: blueprint cmd-with-multi-servers
* | Enable "openstack server unpause" command to take multiple servers.Tang Chen2015-11-131-1/+1
|/ | | | | | | | | Current "openstack server unpause" command could only unpause one server. Improve it to be able to handle more than one servers. Also improve the doc to reflect the new feature. Change-Id: I069ebdd6dcd121f6e55c2bf40d42197f93830e0c Implements: blueprint cmd-with-multi-servers
* Merge "Trivial cleanup: Use plural format for "server delete" doc."Jenkins2015-11-101-1/+1
|\
| * Trivial cleanup: Use plural format for "server delete" doc.Tang Chen2015-11-101-1/+1
| | | | | | | | Change-Id: I4dca25f1933d5925db443eca75f602a39a833413
* | Enable "openstack server pause" command to take multiple servers.Tang Chen2015-11-091-1/+1
|/ | | | | | | | | Current "openstack server pause" command could only pause one server. Improve it to be able to handle more than one servers. Also improve the doc to reflect the new feature. Change-Id: I809f77f0720457c9cdc1028a70b391c75885984c Implements: blueprint cmd-with-multi-servers
* Add "server stop" command to osc.Tang Chen2015-11-051-1/+2
| | | | | | | There is no stop command in osc. Add it. Change-Id: Ia11a8f3b1245c884f7da442292009342d2ffde1e Implements: blueprint cmd-with-multi-servers
* Add "server start" command to osc.Tang Chen2015-11-051-0/+1
| | | | | | | There is no start command in osc. Add it. Change-Id: Ic50f83413ab17c53396065aabb3f5a1506b52959 Implements: blueprint cmd-with-multi-servers
* Trivial clean up: Add doc for "osc server lock/unlock".Tang Chen2015-10-281-2/+2
| | | | | | There is no doc for "server lock/unlock" in doc/source/commands.rst. Change-Id: Ibabc260f6269a452c3de0d032839f63938bd348e
* Merge "Add a table showing all the openstack plugin objects"Jenkins2015-10-141-0/+34
|\
| * Add a table showing all the openstack plugin objectsSteve Martinelli2015-10-081-0/+34
| | | | | | | | | | | | | | | | We need a spot that highlights the `objects` used by OpenStack based `plugins`. The sooner we have this information out, the sooner we reduce the chance of a name collision. Change-Id: If9f07e19adea4aaa813eecdd0bce1fbfe616e306
* | Fix a typo in commands.rstDaisuke Fujita2015-10-081-1/+1
|/ | | | | | 1. "ec2 cedentials" to "ec2 credentials" Change-Id: I9a17c0d592f9a4d6e53e6dd786cba405468a3e09
* Add docs for service provider CRUDSteve Martinelli2015-04-151-0/+1
| | | | | | | | This patch adds service providers to command-objects, and makes a few changes to the help text, to align it more with the already established identity provider resource. Change-Id: Ibf3d2bc04bf5588d1fc9c37b8ca28c007496c021
* Add ability for diplaying hypervisor statisticslin-hua-cheng2015-03-061-0/+1
| | | | | | | | Added new command 'hypervisor stats show' for displaying the hypervisor stats over all compute nodes. Change-Id: I4f98c69135b04d4f6cea67cd6350d5d99fb79dba Partial-Bug: #1423748
* Add hypervisor docslin-hua-cheng2015-03-051-1/+1
| | | | Change-Id: I444734925316e876afcbfdeffafea9973a837022
* Command doc: policySteve Martinelli2015-01-121-1/+1
| | | | | | | Also tweaked a bunch of the code to not show 'blob', but 'rules' instead. Change-Id: I6db798d272ff416a77f169c0e912d2096fa02504
* Command docs: add serviceDean Troyer2015-01-121-1/+1
| | | | | | | Co-Authored-By: Lin Hua Cheng <os.lcheng@gmail.com> Change-Id: Icd39e6d769fd4c4797fcf4ef9eb97c71ed166b3b Closes-Bug: #1404434