]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Adds help text to brocade configuration options
authorJustin Hammond <justin.hammond@rackspace.com>
Tue, 3 Sep 2013 20:57:52 +0000 (15:57 -0500)
committerJustin Hammond <justin.hammond@rackspace.com>
Tue, 10 Sep 2013 21:58:52 +0000 (14:58 -0700)
Help text was added to the configuration options defined in the brocade neutron
plugin. This help text should assist users of the brocade plugin. The OSTYPE
configuration option was not used in the plugin and was labeled as such so a
user of the plugin would not worry about the meaning of it.

The example etc file /etc/neutron/plugins/brocade/brocade.ini has been updated
to share the same help values where applicable.

Fixes-Bug: #1157511

Change-Id: Ie068396e77902037a7a0b5334d4dfb0dcdd3575e

etc/neutron/plugins/brocade/brocade.ini
neutron/plugins/brocade/NeutronPlugin.py

index 6501c1b213e262cf5b786ab2f7aa4b3e26ddd764..9acd1d990a36e57385cea80fa9e9174cd68e12d0 100644 (file)
@@ -1,8 +1,8 @@
 [switch]
-# username = <mgmt admin username>
-# password = <mgmt admin password>
-# address  = <switch mgmt ip address>
-# ostype   = NOS
+# username = The SSH username to use
+# password = The SSH password to use
+# address  = The address of the host to SSH to
+# ostype   = Should be NOS, but is unused otherwise
 #
 # Example:
 # username = admin
@@ -11,7 +11,7 @@
 # ostype   = NOS
 
 [physical_interface]
-# physical_interface = <physical network name>
+# physical_interface = The network interface to use when creating a port
 #
 # Example:
 # physical_interface = physnet1
index 2f0a169b777ca1b0cfca26370fe7f604bf719721..d2f137c6519136006ca98bff45f83fdd04e5214d 100644 (file)
@@ -59,13 +59,19 @@ PLUGIN_VERSION = 0.88
 AGENT_OWNER_PREFIX = "network:"
 NOS_DRIVER = 'neutron.plugins.brocade.nos.nosdriver.NOSdriver'
 
-SWITCH_OPTS = [cfg.StrOpt('address', default=''),
-               cfg.StrOpt('username', default=''),
-               cfg.StrOpt('password', default='', secret=True),
-               cfg.StrOpt('ostype', default='NOS')
+SWITCH_OPTS = [cfg.StrOpt('address', default='',
+                          help=_('The address of the host to SSH to')),
+               cfg.StrOpt('username', default='',
+                          help=_('The SSH username to use')),
+               cfg.StrOpt('password', default='', secret=True,
+                          help=_('The SSH password to use')),
+               cfg.StrOpt('ostype', default='NOS',
+                          help=_('Currently unused'))
                ]
 
-PHYSICAL_INTERFACE_OPTS = [cfg.StrOpt('physical_interface', default='eth0')
+PHYSICAL_INTERFACE_OPTS = [cfg.StrOpt('physical_interface', default='eth0',
+                           help=_('The network interface to use when creating'
+                                  'a port'))
                            ]
 
 cfg.CONF.register_opts(SWITCH_OPTS, "SWITCH")