Honor default_network for interface_ip

When we generate the interface_ip (which is used, amongst other things,
by ansible dynamic inventory) we do our best to figure out based on
config which of the IPs a server has should be the one that the user
wants to be "the" interface. In the previous patches, we added support
for the user configuring a "default_network" for one of their networks.
If the user has done this, and the server has an IP on that network, we
should use that network for interface_ip.

Change-Id: I440916622f9dfe12f8865bb1841dd0932d3cd7d0
This commit is contained in:
Monty Taylor 2016-04-12 07:28:14 -05:00
parent af47ff174d
commit c6017bdc80
No known key found for this signature in database
GPG Key ID: 3390DB68041A12F0
3 changed files with 54 additions and 11 deletions

View File

@ -181,6 +181,55 @@ def get_server_external_ipv6(server):
return None
def get_server_default_ip(cloud, server):
""" Get the configured 'default' address
It is possible in clouds.yaml to configure for a cloud a network that
is the 'default_interface'. This is the network that should be used
to talk to instances on the network.
:param cloud: the cloud we're working with
:param server: the server dict from which we want to get the default
IPv4 address
:return: a string containing the IPv4 address or None
"""
ext_net = cloud.get_default_network()
if ext_net:
if (cloud._local_ipv6 and not cloud.force_ipv4):
# try 6 first, fall back to four
versions = [6, 4]
else:
versions = [4]
for version in versions:
ext_ip = get_server_ip(
server, key_name=ext_net['name'], version=version)
if ext_ip is not None:
return ext_ip
return None
def _get_interface_ip(cloud, server):
""" Get the interface IP for the server
Interface IP is the IP that should be used for communicating with the
server. It is:
- the IP on the configured default_interface network
- if cloud.private, the private ip if it exists
- if the server has a public ip, the public ip
"""
default_ip = get_server_default_ip(cloud, server)
if default_ip:
return default_ip
if cloud.private and server['private_v4']:
return server['private_v4']
if (server['public_v6'] and cloud._local_ipv6 and not cloud.force_ipv4):
return server['public_v6']
else:
return server['public_v4']
def get_groups_from_server(cloud, server, server_vars):
groups = []
@ -242,17 +291,7 @@ def add_server_interfaces(cloud, server):
server['public_v4'] = get_server_external_ipv4(cloud, server) or ''
server['public_v6'] = get_server_external_ipv6(server) or ''
server['private_v4'] = get_server_private_ip(server, cloud) or ''
interface_ip = None
if cloud.private and server['private_v4']:
interface_ip = server['private_v4']
else:
if (server['public_v6'] and cloud._local_ipv6
and not cloud.force_ipv4):
interface_ip = server['public_v6']
else:
interface_ip = server['public_v4']
if interface_ip:
server['interface_ip'] = interface_ip
server['interface_ip'] = _get_interface_ip(cloud, server) or ''
# Some clouds do not set these, but they're a regular part of the Nova
# server record. Since we know them, go ahead and set them. In the case

View File

@ -87,6 +87,7 @@ class FakeServer(object):
self, id, name, status, addresses=None,
accessIPv4='', accessIPv6='', private_v4='',
private_v6='', public_v4='', public_v6='',
interface_ip='',
flavor=None, image=None, adminPass=None,
metadata=None):
self.id = id
@ -110,6 +111,7 @@ class FakeServer(object):
self.public_v6 = public_v6
self.adminPass = adminPass
self.metadata = metadata
self.interface_ip = interface_ip
class FakeService(object):

View File

@ -64,6 +64,8 @@ class FakeCloud(object):
def list_server_security_groups(self, server):
return []
def get_default_network(self):
return None
standard_fake_server = fakes.FakeServer(
id='test-id-0',