]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Add extra details in BigSwitch config
authorLorin Hochstein <lorin@nimbisservices.com>
Tue, 4 Jun 2013 13:42:00 +0000 (09:42 -0400)
committerLorin Hochstein <lorin@nimbisservices.com>
Tue, 4 Jun 2013 13:42:00 +0000 (09:42 -0400)
Add some details to some of the BigSwitch configuration options.

The doc team will soon be generating documentation for configuration
options by extracting it directly from the source code help strings,
which is one of the motivations for adding this detail.

Change-Id: I7c694212bee29ac78135a4436633a202a6bba4a2

quantum/plugins/bigswitch/plugin.py

index 4477250873978fdf58c88301e00cc7c6ee2e74f5..78bb92e3949ebeda57a44b2777414f1d2aff9bd7 100644 (file)
@@ -76,12 +76,18 @@ LOG = logging.getLogger(__name__)
 
 restproxy_opts = [
     cfg.StrOpt('servers', default='localhost:8800',
-               help=_("A comma separated list of servers and port numbers "
-                      "to proxy request to.")),
+               help=_("A comma separated list of BigSwitch or Floodlight "
+                      "servers and port numbers. The plugin proxies the "
+                      "requests to the BigSwitch/Floodlight server, "
+                      "which performs the networking configuration. Note that "
+                      "only one server is needed per deployment, but you may "
+                      "wish to deploy multiple servers to support failover.")),
     cfg.StrOpt('server_auth', default='username:password', secret=True,
-               help=_("Server authentication")),
+               help=_("The username and password for authenticating against "
+                      " the BigSwitch or Floodlight controller.")),
     cfg.BoolOpt('server_ssl', default=False,
-                help=_("Use SSL to connect")),
+                help=_("If True, Use SSL when connecting to the BigSwitch or "
+                       "Floodlight controller.")),
     cfg.BoolOpt('sync_data', default=False,
                 help=_("Sync data on connect")),
     cfg.IntOpt('server_timeout', default=10,