dr: Add option to customize base image
Add the option to replace the base image to build the test container
image with quagga. This allows users to adjust the image reference
according to their environment (eg. in case a local image registry is
used).
Change-Id: I9ae3ef8bd5d42df801f9ee5b396d785ef42030c7
diff --git a/neutron_tempest_plugin/config.py b/neutron_tempest_plugin/config.py
index 55d9d9e..2a818bd 100644
--- a/neutron_tempest_plugin/config.py
+++ b/neutron_tempest_plugin/config.py
@@ -248,6 +248,21 @@
CONF.register_group(taas_group)
CONF.register_opts(TaasGroup, group="taas")
+
+DynamicRoutingGroup = [
+ cfg.StrOpt('base_image',
+ default='quay.io/nf-core/ubuntu:20.04',
+ help=('Base image used to build the image for connectivity '
+ 'check')),
+]
+
+dynamic_routing_group = cfg.OptGroup(
+ name="dynamic_routing",
+ title=("Neutron-Dynamic-Routing Service Options"))
+CONF.register_group(dynamic_routing_group)
+CONF.register_opts(DynamicRoutingGroup, group="dynamic_routing")
+
+
# DNS Integration with an External Service
DnsFeatureGroup = [
cfg.IntOpt(