Add missing config options
The patch adds missing config option required for hybrid_bm test
Change-Id: I8d5f98a76f662b2ed4c9c682b8e108c8af01b1fa
Related-Prod: PRODX-3456
diff --git a/ironic_tempest_plugin/config.py b/ironic_tempest_plugin/config.py
index 9e995b1..b880e9d 100644
--- a/ironic_tempest_plugin/config.py
+++ b/ironic_tempest_plugin/config.py
@@ -284,6 +284,14 @@
cfg.ListOpt('hybrid_topology_netB_network_types',
default=['geneve'],
help="List of possible network types for hybrid topology "
+ "netB."),
+ cfg.ListOpt('hybrid_topology_bm_netA_network_types',
+ default=['geneve'],
+ help="List of possible network types for BM hybrid topology "
+ "netA."),
+ cfg.ListOpt('hybrid_topology_bm_netB_network_types',
+ default=['geneve'],
+ help="List of possible network types for BM hybrid topology "
"netB.")
]