summaryrefslogtreecommitdiff
path: root/openstackclient/network
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Implement "address scope show" command"Jenkins2016-05-111-0/+24
|\
| * Implement "address scope show" commandHuanxuan Ao2016-05-111-0/+24
| | | | | | | | | | | | | | | | This patch add a command that supports showing address scope details Change-Id: Ic0b41c1cab8c618904c7a6046d7493db5b74b430 Partial-Bug: #1566269
* | Merge "Implement "address scope list" command"Jenkins2016-05-111-0/+27
|\ \ | |/
| * Implement "address scope list" commandHuanxuan Ao2016-05-111-0/+27
| | | | | | | | | | | | | | | | This patch add a command that supports listing address scopes Change-Id: Id14757011560cacf28011ba51841a8e23b824f33 Partial-Bug: #1566269
* | Merge "Implement "address scope delete" command"Jenkins2016-05-111-0/+19
|\ \ | |/
| * Implement "address scope delete" commandHuanxuan Ao2016-05-111-0/+19
| | | | | | | | | | | | | | | | This patch add a command that supports deleting a address scope Change-Id: Ie028058c759b9511d105a530d7e89b841865e7d6 Partial-Bug: #1566269
* | Merge "Implement "address scope create" command"Jenkins2016-05-111-0/+96
|\ \ | |/
| * Implement "address scope create" commandHuanxuan Ao2016-05-111-0/+96
| | | | | | | | | | | | | | | | | | This patch supports creating a new address scope, with --ip-version,--project,--project-domain and --share or --no-share options. Change-Id: I37c73391a41ac239dd72d55dbc0adbebd7701f4a Partial-Bug: #1566269
* | Merge "Fix router set --route option"Jenkins2016-05-031-5/+21
|\ \
| * | Fix router set --route optionRichard Theis2016-04-181-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the "--route" option on the "os router set" command. The option did not properly format the new routes to set which resulted in a "HttpException: Bad Request" error. In addition, the output for routes was fixed to improve readability and to align with the "--route" option on the "os router set" command. Change-Id: I9c514153ec201e2feae32be6dd281771e3298b9c Closes-Bug: #1564460
* | | remove assert in favor an if/elseMichael McCune2016-05-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the assert usage in the NonNegativeAction has the potential to allow unexpected behavior when the python is byte-compiled with optimization turned on. Changes * remove assert in favor of if/else in NonNegativeAction class * add type specifier to parser arguments for non-negative actions * correct tests for new int based values Change-Id: I093e7440b8beff4f179e2c4ed81daff82704c40e Closes-Bug: #1576375
* | | Fixes BadRequest when no --pool-prefix givenInessa Vasilevskaya2016-04-271-2/+3
| | | | | | | | | | | | | | | | | | | | | --pool-prefix is made required on subnetpool creation. Closes-bug: #1536479 Change-Id: I3d183e45e9b96bc08011c36f45ec2b7a9c01b627
* | | Merge "Add new share and default parms to subnet pool cmds"Jenkins2016-04-211-0/+42
|\ \ \
| * | | Add new share and default parms to subnet pool cmdsBrad Behle2016-04-201-0/+42
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the "share" and "default" parms to subnet pool create command. Add the "default" and "no-default" parms to subnet pool set command. Note that "share" can not be modified once subnet pool has been created, so do not add this to the set command. Change-Id: I1eecad69527a1cde7fb234669f4aff2be2db491e Partial-Bug: #1544591 Partial-Bug: #1544586
* | | Merge "Fixed subnet command host route output"Jenkins2016-04-211-10/+8
|\ \ \
| * | | Fixed subnet command host route outputRichard Theis2016-04-201-10/+8
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed the "os subnet create", "os subnet list" and "os subnet show" command output for host routes to improve readability and to align with the "--host-route" option on the "os subnet create" and "os subnet set" commands. Change-Id: Ida69ae1a0bdb2e1648f8b5c978fc80cf1bbe752f Closes-Bug: #1572309
* | | Trivial: Fix an omited i18n issueTang Chen2016-04-201-1/+2
|/ / | | | | | | Change-Id: I064ae79d31f96021dfb5d7cd16a3ace9725803f6
* | Merge "Fix client certificate/key support for Network v2 commands"Jenkins2016-04-191-1/+3
|\ \
| * | Fix client certificate/key support for Network v2 commandsCedric Brandily2016-04-191-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently network v2 commands don't support client certificate/key because they were not passed to OpenStackSDK Connection which is used by network v2 commands. This changes corrects the integration with OpenStacKSDK to pass client certificate/key. Closes-Bug: #1569513 Related-Bug: #1569508 Depends-On: Ic093f8515e7b15931994e4516ebec8f4399d021e Change-Id: Ie37e8e988ca695a09894c6c93560dacd83f17030
* | | Merge "Add provider network options to osc network set"Jenkins2016-04-191-31/+33
|\ \ \ | |/ / |/| |
| * | Add provider network options to osc network setreedip2016-04-191-31/+33
| |/ | | | | | | | | | | | | | | The following patch adds the provider network options to OSC "network set". Change-Id: I23b617077eda25d16164172a8e280082750eaf18 Partial-Bug: #1545537
* | Merge "Add options to security group rule list"Jenkins2016-04-191-3/+43
|\ \
| * | Add options to security group rule listRichard Theis2016-04-181-3/+43
| |/ | | | | | | | | | | | | | | | | | | | | Add the following options to the 'os security group rule list' command: --long: Display direction and ethertype for Network v2 --all-projects: Display information from all projects for Compute v2 Change-Id: If8a1cbd7669cdfa6577d6d2f6fffd9e999a39a82 Partial-Bug: #1519512 Implements: blueprint neutron-client
* | Merge "Initialize neutron client with region name"Jenkins2016-04-191-1/+5
|\ \ | |/ |/|
| * Initialize neutron client with region nameAndrey Larionov2016-04-181-1/+5
| | | | | | | | | | | | | | | | | | All clients except neutron are initialized with region name. This makes unable to use network related commands of openstackclient in multi-region configurations Change-Id: I200dc9a2f938c3e69357f91c79810df167e4fccb Closes-bug: 1570491
* | State i18() changes and help messages improvedTang Chen2016-04-188-200/+229
| | | | | | | | | | | | | | | | Add _() to wrap help message in network commands. And also some improvement for help message. Change-Id: Ib3e498f5976ba98c44fd4eec2d1623263b3db53e Partial-bug: 1570924
* | Merge "Append existing information during port set"Jenkins2016-04-151-6/+14
|\ \
| * | Append existing information during port setreedip2016-04-141-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Existing --fixed-ip and --binding-profile information is currently overwritten when a user executes 'port set', but actually that data should be appended. This patch fixes the issue. Closes-Bug: #1564453 Change-Id: I62500c10ccbbc68167f24e9d4fa49e85345d82c4
* | | Merge "Add external network options to osc network set"Jenkins2016-04-151-8/+30
|\ \ \
| * | | Add external network options to osc network setreedip2016-04-151-8/+30
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | The following patch adds the options "--external" & "--internal" and the suboptions to "external": "--default" & "--no-default", to "osc network set" CLI to provide the user an option to set a network as an external network or remove the setting. Change-Id: I3a7f2cb249bc8101cbb01322d7732e913237d6cd Partial-Bug: #1545537
* | | Merge "Add project options to security group rule create"Jenkins2016-04-141-0/+15
|\ \ \
| * | | Add project options to security group rule createRichard Theis2016-04-111-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the --project and --project-domain options to the 'os security group rule create' command. These options are for Network v2 only. Change-Id: Ie3e136be076f0f2c22fbe7048d1d6eaebf5aa655 Partial-Bug: #1519512 Implements: blueprint neutron-client
* | | | Merge "Add network options to security group rule create"Jenkins2016-04-141-12/+47
|\ \ \ \ | |/ / / | | / / | |/ / |/| |
| * | Add network options to security group rule createRichard Theis2016-04-111-12/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the following network options to the "os security group rule" command: (1) --ingress and --egress (2) --ethertype These options enable egress and IPv6 security group rules for Network v2. Change-Id: Ie30b5e95f94e0c087b0ce81e518de72d2dda25ad Partial-Bug: #1519512 Implements: blueprint neutron-client
* | | Merge "Doc: Unify repeatable option comments"Jenkins2016-04-135-16/+16
|\ \ \
| * | | Doc: Unify repeatable option commentsTang Chen2016-04-125-16/+16
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are lots of "this option can be repeated" comments in the doc, which are not consistent to other similar docs. This patch changes them to the following format: "repeat option to do something" Change-Id: I54e01053091c428bf87bb36bb95f73a0b80ab6e7
* | | Merge "Append existing information during subnet set"Jenkins2016-04-131-0/+6
|\ \ \
| * | | Append existing information during subnet setreedip2016-04-081-0/+6
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | Existing values of --dns-nameserver, --allocation-pool and --houst-routes is currently overwritten when a user executes 'port set', but actually that data should be appended. This patch fixes the issue. Closes-Bug: #1564447 Change-Id: I3dba9afa68d869abb3960b55a6880401a10eebf7
* | | Merge "Fix SSL/TLS verification for network commands"Jenkins2016-04-131-1/+2
|\ \ \
| * | | Fix SSL/TLS verification for network commandsRichard Theis2016-04-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The network commands ignored the --insecure and --os-cacert options and OS_CACERT environment variable which prevented them from properly completing SSL/TLS verification. This resulted in the network commands failing with "An SSL error occurred." Change-Id: I15167631ef58335e1476c16b828b079e3b0f13c1 Closes-Bug: #1560157
* | | | Merge "Add --address-scope option "subnet pool create/set""Jenkins2016-04-131-2/+28
|\ \ \ \
| * | | | Add --address-scope option "subnet pool create/set"Tang Chen2016-04-091-2/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds --address-scope option to "subnet pool create/set" commands, and --no-address-scope option to "subnet pool set" command to clear the address scope setting. Change-Id: Ie2c370a50b52574fa6ec268083ad013b7544361e Partial-Bug: #1544586 Partial-Bug: #1544591
* | | | | Fix prefixes output for subnet pool listRichard Theis2016-04-121-1/+1
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed "os subnet pool list" command to properly disply the list of subnet pool prefixes in the "Prefixes" column. This fix is consistent with the "os subnet pool create" and "os subnet pool show" command output. Change-Id: I431d85c3b7f5bf8a327500decf3a15063fc5b120 Closes-Bug: #1569480
* | | | Merge "Doc: Fix network command documentation issues"Jenkins2016-04-111-9/+8
|\ \ \ \
| * | | | Doc: Fix network command documentation issuesRichard Theis2016-04-081-9/+8
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the following network command documentation issues: - Fix format of subnet pool positional arguments - Update port set options to match help - Fix network command documentation for Network v2 versus Compute v2 options and commands - Fix subnet command documentation errors and formatting problems in help text Change-Id: I808c2a70ca62eafc9e42d6873539cdd142ffe50c Related-Bug: #1558677
* | | | Merge "Refactor security group rule list to use SDK"Jenkins2016-04-111-0/+115
|\ \ \ \ | |_|/ / |/| | |
| * | | Refactor security group rule list to use SDKRichard Theis2016-03-281-0/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored the 'os security group rule list' command to use the SDK when neutron is enabled, but continue to use the nova client when nova network is enabled. In addition, a release note was added to document the features and fixes resulting from this refactor. Change-Id: I24d04b720102ed1c60776e1ca67d4ca20e31b663 Partial-Bug: #1519512 Implements: blueprint neutron-client
* | | | Merge "Add Subnet add/remove support to router"Jenkins2016-04-091-0/+54
|\ \ \ \
| * | | | Add Subnet add/remove support to routerreedip2016-03-221-0/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following patch adds the support for "router add subnet" and "router remove subnet" to the OSC as a part of migration of Neutron's CLI commands. Partial-Bug: #1546849 Implements: blueprint neutron-client-advanced-router Change-Id: Ia3770c41026194bdb1543d4e67446f81936d44d1
* | | | | Merge "Add "router remove port" to osc"Jenkins2016-04-091-0/+24
|\ \ \ \ \ | |/ / / /