summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
* Router: Add "router delete" command using SDKTang Chen2015-12-161-0/+16
| | | | | | | | This patch adds "router delete" command to osc using sdk. Change-Id: I47d0ca7f7984942ffceaeb1c9ac69efd09145f40 Implements: blueprint neutron-client Partial-bug: #1519503
* Router: Add "router create" command using SDKTang Chen2015-12-151-0/+40
| | | | | | | | | | | | | | | This patch adds "router create" command to osc using sdk. NOTE: Test for --project needs support for fake identity client v2 and v3. These tests will be added in other patches. NOTE: external_gateway_info and routes are not supported to be passed to create command now. They will be supported in another tow patches. NOTE: Creating a ha router is not supported for now. Will support it in another patch. Change-Id: I7642295d27c27dd498331ae1da1c293706d8f6af Implements: blueprint neutron-client Partial-bug: #1519503
* Merge "Router: Add "router list" command using SDK"Jenkins2015-12-112-0/+21
|\
| * Router: Add "router list" command using SDKTang Chen2015-12-112-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 "Trivial: Fix parameter name typo in network.rst"Jenkins2015-12-111-3/+3
|\ \
| * | Trivial: Fix parameter name typo in network.rstTang Chen2015-12-111-3/+3
| |/ | | | | | | | | | | | | | | 1. "network delete" takes network name or ID, not project 2. "network set/show" takes network name or ID, not only name. So use network, not name. Change-Id: I13835fea1d0151ea0cd93e250b022c9daf74b537
* | Merge "Add source security group support to create rule"Jenkins2015-12-111-2/+6
|\ \ | |/ |/|
| * Add source security group support to create ruleRichard Theis2015-12-071-2/+6
| | | | | | | | | | | | | | | | | | | | The 'security group rule create' command was updated to support a source security group. Now either a source IP address block or source security group can be specified when creating a rule. The default remains the same. Change-Id: If57de2871810caddeeaee96482eb34146968e173 Closes-Bug: #1522969
* | Trivial: Do not use plural format in command parameter in "network delete"Tang Chen2015-12-111-1/+1
| | | | | | | | | | | | | | | | | | | | Since "network delete" could delete more than one network, add a (s) to the doc. And also, rename the parameter "networks" to "network". The naming style is not using plural format in parameter. Change-Id: Id434ea905af34457f84ea6bcb18addef5800429a
* | Merge "Integrating mistralclient with openstackclient"Jenkins2015-12-082-1/+8
|\ \
| * | Integrating mistralclient with openstackclientLingxian Kong2015-12-012-1/+8
| | | | | | | | | | | | | | | Change-Id: Ie54d7c15366a8272eefa94c0d8d2430428bdc590 Depends-On: Ic099aaec88377a76a17700c33fed944e52ec5633
* | | Merge "Trivial: Improve doc for "server create" command"Jenkins2015-12-051-4/+5
|\ \ \ | |_|/ |/| |
| * | Trivial: Improve doc for "server create" commandTang Chen2015-12-041-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | The following options of "server create" command support searching by both name and ID. So add this info into doc. --image, --volume, --flavor, --security. Change-Id: I93b167da58144e5de6c9996009b7ea2449fb4cd8
* | | Trivial: Remove unuseful doc of "network list" command.Tang Chen2015-12-051-5/+0
| | | | | | | | | | | | | | | | | | | | | There is actually no "--dhcp" option in "network list" command. So remove the doc from .rst file. Change-Id: I481b260f99be635be4de8e6780206af47cdaa7ce
* | | Merge "Support "server list" searching by both image name and ID."Jenkins2015-12-031-1/+1
|\ \ \
| * | | Support "server list" searching by both image name and ID.Tang Chen2015-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Nova API only supports list servers searching by image ID. In OSC, we can support both image name and ID by mapping the name to ID. This patch also fix the inconsistent doc in .py and .rst files. Closes-Bug: 1521492 Change-Id: I70613843f82d74732bd32a457cd4a31aba57825f
* | | | Merge "Support "server list" searching by both flavor name and ID."Jenkins2015-12-031-1/+1
|\ \ \ \ | |/ / /
| * | | Support "server list" searching by both flavor name and ID.Tang Chen2015-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Nova API only supports list servers searching by flavor ID. In OSC, we can support both flavor name and ID by mapping the name to ID. This patch also fix the inconsistent doc in .py and .rst files. Partial-Bug: 1521492 Change-Id: I1d1a6aa91aef4e2846745babe8382481185fa96e
* | | | Merge "Convert 2.0 release notes to reno format"2.0.0Jenkins2015-12-031-33/+2
|\ \ \ \
| * | | | Convert 2.0 release notes to reno formatDean Troyer2015-12-021-33/+2
| | | | | | | | | | | | | | | | | | | | Change-Id: I3706f78152c77837ba17218d68b57ac10563bfa7
* | | | | Merge "Add reno for release notes management"Jenkins2015-12-021-0/+35
|\ \ \ \ \ | |/ / / /
| * | | | Add reno for release notes managementDean Troyer2015-12-021-0/+35
| | |/ / | |/| | | | | | | | | | Change-Id: Iaaf3f9ca7cb431e41adfb2a052e01e2240a63a07
* | | | Trivial: Reorder doc of "server shelve" command to keep alphabetic order.Tang Chen2015-12-041-15/+15
|/ / / | | | | | | | | | Change-Id: I616154a8c958b6980233014c7ae1c4544283d72d
* | | Merge "Add release notes for 2.0.0"Jenkins2015-12-021-0/+35
|\ \ \
| * | | Add release notes for 2.0.0Steve Martinelli2015-12-011-0/+35
| | | | | | | | | | | | | | | | Change-Id: I878609870701abaef60d49813b3184f473d936bf
* | | | Merge "autodocument commands from plugins using stevedore.sphinxext"Jenkins2015-12-014-1/+36
|\ \ \ \ | |_|/ / |/| | |
| * | | autodocument commands from plugins using stevedore.sphinxextSteve Martinelli2015-12-014-1/+36
| |/ / | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge "Add --limit option to "server list" command."Jenkins2015-12-011-0/+7
|\ \ \ | |/ / |/| |
| * | Add --limit option to "server list" command.Tang Chen2015-12-011-0/+7
| | | | | | | | | | | | | | | | | | This option will limit the total amount of items the command will list up. Change-Id: I46af0d479d795ebb6a74585d0f76629dd940b117
* | | Merge "Add a changelog to see all changes into tagged releases"Jenkins2015-12-012-1/+10
|\ \ \
| * | | Add a changelog to see all changes into tagged releasesSteve Martinelli2015-11-302-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | in addition to release notes, it'll be nice to also see the changelog that happened between releases. Change-Id: I4548be22c377ec12f0398a248391384126506715
* | | | Merge "Consistency of the --all argument for snapshots"Jenkins2015-12-011-0/+5
|\ \ \ \ | |/ / / |/| | |
| * | | Consistency of the --all argument for snapshotsJean-Philippe Evrard2015-11-301-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change is inspired by the volume.py. It allow the user to use openstack snapshot list --all. Closes-Bug: #1517386 Change-Id: I72a53fcd0c5c5af539cd88b37e71b4331fa67473
* | | | Merge "Add --marker option to "server list" command."Jenkins2015-11-301-0/+6
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Add --marker option to "server list" command.Tang Chen2015-12-011-0/+6
| | | | | | | | | | | | | | | | | | | | | This option will give user a chance to display the server list from wherever they want. Change-Id: I92cca5e98cd473f1113a9106eb9d1f490694b1fe
* | | Merge "Add "openstack server unshelve" into OSC"Jenkins2015-11-302-1/+17
|\ \ \
| * | | Add "openstack server unshelve" into OSCxiexs2015-11-282-1/+17
| |/ / | | | | | | | | | | | | | | | | | | | | | The unshelve operation is not supported by OSC, and this patch tries to add it. Change-Id: Ic60a4616cb63ad21c1a3c8e02611da8bad3a8bd0 Implements: blueprint introduce-shelve-into-osc
* | | Merge "Add command wrapper doc"Jenkins2015-11-302-0/+53
|\ \ \ | |/ / |/| |
| * | Add command wrapper docDean Troyer2015-11-202-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | This is a follow-up to I6c750730963615895f5d9953487d2d5a905885a8 that removed a command deprecation warning wrapper. This documents the technique for later use. Change-Id: Ieaa1e6b7eed4e5b037b4bfb6cf488e1290fc69f7
* | | Change 'Object Store' to 'Object Storage'Xi Yang2015-11-265-6/+6
| | | | | | | | | | | | | | | | | | | | | 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-242-0/+16
|\ \ \
| * | | Add "openstack server shelve" into OSCxiexs2015-11-242-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Merge "Doc: Update and add IP address"Jenkins2015-11-244-23/+84
|\ \ \ \
| * | | | Doc: Update and add IP addressRichard Theis2015-11-244-23/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | Merge "Doc: Add security group and security group rule"Jenkins2015-11-242-0/+160
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Doc: Add security group and security group ruleRichard Theis2015-11-242-0/+160
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add missing command list documentation for the 'security group' and 'security group rule' commands. In addition, update the command description and argument help to fix minor issues and use consistent terminology. Change-Id: I9f4a3fbac5637289f19511874e16391d3fe27132
* | | | Enable "openstack server resume" command to take multiple servers.Tang Chen2015-11-242-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-242-4/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge "Add release notes for 1.9.0"1.9.0Jenkins2015-11-171-0/+58
|\ \ \ | |/ / |/| |
| * | Add release notes for 1.9.0Steve Martinelli2015-11-161-0/+58
| | | | | | | | | | | | | | | | | | Sum up the latest bug fixes for the latest release. Change-Id: I4f6e9e9d5062e5ccb94f088abdc270fc40373d16