From 9b68d39983a8ef8d61e96b449542bfa2bc166e4d Mon Sep 17 00:00:00 2001 From: Amol Kahat Date: Wed, 17 Nov 2021 17:29:55 +0530 Subject: [PATCH] Set dns_domain_name option 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 set dns_domain_name option to "openstackgate.local" which is the same value like configured in all of the Neutron CI jobs by the Neutron Devstack plugin. Related-Bug: #1950815 Signed-off-by: Amol Kahat Change-Id: I5a0188524ee05053c708ceb5c564bb3ebcb614dc --- roles/standalone/templates/standalone_config.yaml.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/standalone/templates/standalone_config.yaml.j2 b/roles/standalone/templates/standalone_config.yaml.j2 index 99e0dd69e..18fca28fa 100644 --- a/roles/standalone/templates/standalone_config.yaml.j2 +++ b/roles/standalone/templates/standalone_config.yaml.j2 @@ -59,3 +59,6 @@ parameter_defaults: InterfaceLocalMtu: 1500 NovaComputeLibvirtType: {{ standalone_libvirt_type }} SELinuxMode: {{ standalone_selinux_mode }} +{% if release is defined and release not in ['train', 'ussuri'] %} + NeutronDnsDomain: 'openstackgate.local' +{% endif %}