diff options
| author | Richard Theis <rtheis@us.ibm.com> | 2016-06-10 14:44:50 -0500 |
|---|---|---|
| committer | Richard Theis <rtheis@us.ibm.com> | 2016-06-10 14:47:50 -0500 |
| commit | 56a081fa238967c18e77fd12c7ae697289e34c81 (patch) | |
| tree | a0d53aaa96b496d27d867c710df48c86120ea8f1 /openstackclient/network | |
| parent | df71ae814e06965970ab13dbd3bb159023a18afc (diff) | |
| download | python-openstackclient-56a081fa238967c18e77fd12c7ae697289e34c81.tar.gz | |
Add geneve provider network type
Add the "geneve" choice to the "os network create" command's
"--provider-network-type" option.
Change-Id: I7573232ec3594ec4acbfae43a8456b8c3fcd1a83
Implements: blueprint neutron-client
Diffstat (limited to 'openstackclient/network')
| -rw-r--r-- | openstackclient/network/v2/network.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/network/v2/network.py b/openstackclient/network/v2/network.py index 87e65dad..df4d596d 100644 --- a/openstackclient/network/v2/network.py +++ b/openstackclient/network/v2/network.py @@ -103,11 +103,11 @@ def _add_additional_network_options(parser): parser.add_argument( '--provider-network-type', metavar='<provider-network-type>', - choices=['flat', 'gre', 'local', + choices=['flat', 'geneve', 'gre', 'local', 'vlan', 'vxlan'], help=_("The physical mechanism by which the virtual network " "is implemented. The supported options are: " - "flat, gre, local, vlan, vxlan")) + "flat, geneve, gre, local, vlan, vxlan")) parser.add_argument( '--provider-physical-network', metavar='<provider-physical-network>', @@ -118,8 +118,8 @@ def _add_additional_network_options(parser): '--provider-segment', metavar='<provider-segment>', dest='segmentation_id', - help=_("VLAN ID for VLAN networks or Tunnel ID for GRE/VXLAN " - "networks")) + help=_("VLAN ID for VLAN networks or Tunnel ID for " + "GENEVE/GRE/VXLAN networks")) vlan_transparent_grp = parser.add_mutually_exclusive_group() vlan_transparent_grp.add_argument( |
