Ensure DNS configuration from conf

For internal DNS the DNS configuration including the search
path should be derived from configuration rather than from
the dns_domain attribute of the network, which is used for
external DNS integration.

Update test to ensure that configuration based dns domain
is present in the server search path and is used to validate
resolution of the hostname of the server.

This commit also temporaily skips the internal DNS test whilst
the associated Neutron reviews are landed; it will be re-enabled
afterwards.

Change-Id: I145144c042b100f7e12a02a8ac7e0fbbe41e984d
Related-Bug: 1826419
Required-By: I5ff03b5ad8af432a9f7919ef953d7d8c434b93bd
This commit is contained in:
James Page 2019-06-03 09:23:40 +01:00
parent 033803c3b8
commit e142c0b6e9
1 changed files with 5 additions and 3 deletions

View File

@ -35,7 +35,7 @@ class InternalDNSTest(base.BaseTempestTestCase):
2.1) ping the other VM's internal IP
2.2) ping the other VM's hostname
"""
self.skipTest('Disable whilst associated changes land into Neutron')
network = self.create_network(dns_domain='starwars.')
self.setup_network_and_server(network=network, server_name='luke')
self.create_pingable_secgroup_rule(
@ -72,7 +72,9 @@ class InternalDNSTest(base.BaseTempestTestCase):
ssh_client, leia_port['fixed_ips'][0]['ip_address'],
timeout=CONF.validation.ping_timeout * 10)
self.assertIn(
'starwars', ssh_client.exec_command('cat /etc/resolv.conf'))
'openstackgate.local',
ssh_client.exec_command('cat /etc/resolv.conf')
)
self.check_remote_connectivity(ssh_client, 'leia')
self.check_remote_connectivity(ssh_client, 'leia.starwars')
self.check_remote_connectivity(ssh_client, 'leia.openstackgate.local')