In the Brocade Quantum Plugin (quantum/plugins/brocade/QuantumPlugin.py), options are registered without help text:
64 SWITCH_OPTS = [cfg.StrOpt('address', default=''),
65 cfg.StrOpt('username', default=''),
66 cfg.StrOpt('password', default='', secret=True),
67 cfg.StrOpt('ostype', default='NOS')
68 ]
69
70 PHYSICAL_INTERFACE_OPTS = [cfg.StrOpt('physical_interface', default='eth0')
71 ]
72
73 cfg.CONF.register_opts(SWITCH_OPTS, "SWITCH")
74 cfg.CONF.register_opts(PHYSICAL_INTERFACE_OPTS, "PHYSICAL_INTERFACE")
75 cfg.CONF.register_opts(scheduler.AGENTS_SCHEDULER_OPTS)
I'm not familiar with the expectations of quantum development, but I'd suspect that having help text for every option would be good practice ...
Fix proposed to branch: master /review. openstack. org/44953
Review: https:/