Merge "Sync enabled_provider_drivers config help message"
diff --git a/octavia_tempest_plugin/config.py b/octavia_tempest_plugin/config.py
index 46365f1..7c4ed2f 100644
--- a/octavia_tempest_plugin/config.py
+++ b/octavia_tempest_plugin/config.py
@@ -102,12 +102,13 @@
'default RBAC tests. "owner_or_admin" runs the legacy '
'owner or admin tests. "none" disables the RBAC tests.'),
cfg.DictOpt('enabled_provider_drivers',
- help=('List of enabled provider drivers and description '
- 'dictionaries. Must match the driver name in the '
+ help=('A comma separated list of dictionaries of the '
+ 'enabled provider driver names and descriptions. '
+ 'Must match the driver name in the '
'octavia.api.drivers entrypoint. Example: '
- '{\'amphora\': \'The Octavia Amphora driver.\', '
- '\'octavia\': \'Deprecated alias of the Octavia '
- 'Amphora driver.\'}'),
+ 'amphora:The Octavia Amphora driver.,'
+ 'octavia:Deprecated alias of the Octavia '
+ 'Amphora driver.'),
default={'amphora': 'The Octavia Amphora driver.',
'octavia': 'Deprecated alias of the Octavia Amphora '
'driver.'}),