bc053c09c1
Introduce kolla_address filter. Introduce put_address_in_context filter. Add AF config to vars. Address contexts: - raw (default): <ADDR> - memcache: inet6:[<ADDR>] - url: [<ADDR>] Other changes: globals.yml - mention just IP in comment prechecks/port_checks (api_intf) - kolla_address handles validation 3x interface conditional (swift configs: replication/storage) 2x interface variable definition with hostname (haproxy listens; api intf) 1x interface variable definition with hostname with bifrost exclusion (baremetal pre-install /etc/hosts; api intf) neutron's ml2 'overlay_ip_version' set to 6 for IPv6 on tunnel network basic multinode source CI job for IPv6 prechecks for rabbitmq and qdrouterd use proper NSS database now MariaDB Galera Cluster WSREP SST mariabackup workaround (socat and IPv6) Ceph naming workaround in CI TODO: probably needs documenting RabbitMQ IPv6-only proto_dist Ceph ms switch to IPv6 mode Remove neutron-server ml2_type_vxlan/vxlan_group setting as it is not used (let's avoid any confusion) and could break setups without proper multicast routing if it started working (also IPv4-only) haproxy upgrade checks for slaves based on ipv6 addresses TODO: ovs-dpdk grabs ipv4 network address (w/ prefix len / submask) not supported, invalid by default because neutron_external has no address No idea whether ovs-dpdk works at all atm. ml2 for xenapi Xen is not supported too well. This would require working with XenAPI facts. rp_filter setting This would require meddling with ip6tables (there is no sysctl param). By default nothing is dropped. Unlikely we really need it. ironic dnsmasq is configured IPv4-only dnsmasq needs DHCPv6 options and testing in vivo. KNOWN ISSUES (beyond us): One cannot use IPv6 address to reference the image for docker like we currently do, see: https://github.com/moby/moby/issues/39033 (docker_registry; docker API 400 - invalid reference format) workaround: use hostname/FQDN RabbitMQ may fail to bind to IPv6 if hostname resolves also to IPv4. This is due to old RabbitMQ versions available in images. IPv4 is preferred by default and may fail in the IPv6-only scenario. This should be no problem in real life as IPv6-only is indeed IPv6-only. Also, when new RabbitMQ (3.7.16/3.8+) makes it into images, this will no longer be relevant as we supply all the necessary config. See: https://github.com/rabbitmq/rabbitmq-server/pull/1982 For reliable runs, at least Ansible 2.8 is required (2.8.5 confirmed to work well). Older Ansible versions are known to miss IPv6 addresses in interface facts. This may affect redeploys, reconfigures and upgrades which run after VIP address is assigned. See: https://github.com/ansible/ansible/issues/63227 Bifrost Train does not support IPv6 deployments. See: https://storyboard.openstack.org/#!/story/2006689 Change-Id: Ia34e6916ea4f99e9522cd2ddde03a0a4776f7e2c Implements: blueprint ipv6-control-plane Signed-off-by: Radosław Piliszek <radoslaw.piliszek@gmail.com>
123 lines
5.0 KiB
Python
123 lines
5.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2019 Radosław Piliszek (yoctozepto)
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from jinja2.filters import contextfilter
|
|
from jinja2.runtime import Undefined
|
|
|
|
from kolla_ansible.exception import FilterError
|
|
|
|
|
|
@contextfilter
|
|
def kolla_address(context, network_name, hostname=None):
|
|
"""returns IP address on the requested network
|
|
|
|
The output is affected by '<network_name>_*' variables:
|
|
'<network_name>_interface' sets the interface to obtain address for.
|
|
'<network_name>_address_family' controls the address family (ipv4/ipv6).
|
|
|
|
:param context: Jinja2 Context
|
|
:param network_name: string denoting the name of the network to get IP
|
|
address for, e.g. 'api'
|
|
:param hostname: to override host which address is retrieved for
|
|
:returns: string with IP address
|
|
"""
|
|
|
|
# NOTE(yoctozepto): watch out as Jinja2 'context' behaves not exactly like
|
|
# the python 'dict' (but mimics it most of the time)
|
|
# for example it returns a special object of type 'Undefined' instead of
|
|
# 'None' or value specified as default for 'get' method
|
|
# 'HostVars' shares this behavior
|
|
|
|
if hostname is None:
|
|
hostname = context.get('inventory_hostname')
|
|
if isinstance(hostname, Undefined):
|
|
raise FilterError("'inventory_hostname' variable is unavailable")
|
|
|
|
hostvars = context.get('hostvars')
|
|
if isinstance(hostvars, Undefined):
|
|
raise FilterError("'hostvars' variable is unavailable")
|
|
|
|
del context # remove for sanity
|
|
|
|
host = hostvars.get(hostname)
|
|
if isinstance(host, Undefined):
|
|
raise FilterError("'{hostname}' not in 'hostvars'"
|
|
.format(hostname=hostname))
|
|
|
|
del hostvars # remove for sanity (no 'Undefined' beyond this point)
|
|
|
|
interface_name = host.get(network_name + '_interface')
|
|
if interface_name is None:
|
|
raise FilterError("Interface name undefined "
|
|
"for network '{network_name}' "
|
|
"(set '{network_name}_interface')"
|
|
.format(network_name=network_name))
|
|
|
|
address_family = host.get(network_name + '_address_family')
|
|
if address_family is None:
|
|
raise FilterError("Address family undefined "
|
|
"for network '{network_name}' "
|
|
"(set '{network_name}_address_family')"
|
|
.format(network_name=network_name))
|
|
address_family = address_family.lower()
|
|
if address_family not in ['ipv4', 'ipv6']:
|
|
raise FilterError("Unknown address family '{address_family}' "
|
|
"for network '{network_name}'"
|
|
.format(address_family=address_family,
|
|
network_name=network_name))
|
|
|
|
ansible_interface_name = interface_name.replace('-', '_')
|
|
interface = host.get('ansible_' + ansible_interface_name)
|
|
if interface is None:
|
|
raise FilterError("Interface '{interface_name}' "
|
|
"not present "
|
|
"on host '{hostname}'"
|
|
.format(interface_name=interface_name,
|
|
hostname=hostname))
|
|
|
|
af_interface = interface.get(address_family)
|
|
if af_interface is None:
|
|
raise FilterError("Address family '{address_family}' undefined "
|
|
"on interface '{interface_name}' "
|
|
"for host: '{hostname}'"
|
|
.format(address_family=address_family,
|
|
interface_name=interface_name,
|
|
hostname=hostname))
|
|
|
|
if address_family == 'ipv4':
|
|
address = af_interface.get('address')
|
|
elif address_family == 'ipv6':
|
|
# ipv6 has no concept of a secondary address
|
|
# prefix 128 is the default from keepalived
|
|
# it needs to be excluded here
|
|
global_ipv6_addresses = [x for x in af_interface if
|
|
x['scope'] == 'global' and
|
|
x['prefix'] != '128']
|
|
if global_ipv6_addresses:
|
|
address = global_ipv6_addresses[0]['address']
|
|
else:
|
|
address = None
|
|
|
|
if address is None:
|
|
raise FilterError("{address_family} address missing "
|
|
"on interface '{interface_name}' "
|
|
"for host '{hostname}'"
|
|
.format(address_family=address_family,
|
|
interface_name=interface_name,
|
|
hostname=hostname))
|
|
|
|
return address
|