From ee846d21e919a13d4df6df68c54eb1f81255b43a Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Tue, 16 Nov 2021 11:05:00 +0100 Subject: [PATCH] [Neutron] Add custom env file to set dns_domain_name To be able to run properly dns_domain_name related tests from the neutron_tempest_plugin.api.test_ports module, Neutron has to have configured non default dns_domain_name option. This patch adds custom environment file which will set that config option to "openstackgate.local" which is the same value like is configured in all of the Neutron CI jobs by the Neutron Devstack plugin. Related-Bug: #1950815 Change-Id: I4d803a7b43533debdf6063299878cf1b13c664e6 --- ci/environments/neutron_dns_domain.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 ci/environments/neutron_dns_domain.yaml diff --git a/ci/environments/neutron_dns_domain.yaml b/ci/environments/neutron_dns_domain.yaml new file mode 100644 index 0000000000..899e744e29 --- /dev/null +++ b/ci/environments/neutron_dns_domain.yaml @@ -0,0 +1,2 @@ +parameter_defaults: + NeutronDnsDomain: 'openstackgate.local'