1862e24bb5
Kayobe currently supports definition of various different networks - public, internal, tunnel, etc. These typically map to a VLAN or flat network, with an IP subnet. When a cloud exceeds the size of a single VLAN/subnet, this approach no longer works. One way to resolve this is to have multiple subnets that map to a single logical network, and provide routing between them. This is a similar concept to neutron's routed networks, but for the control plane. An issue arising from this is that if different hosts can have different network definitions for the internal and public networks, it is no longer trivial to use a network attribute [1] to specify the VIP address and FQDN. Furthermore, the play that generates Kolla Ansible's globals.yml containing the VIP and FQDN variables runs as localhost, which does not necessarily have the internal and public networks defined. To resolve this, we add global variables for the VIPs and FQDNs. The default values are as before, except in the case where HAProxy is disabled, which we no longer provide a useful default for. That configuration is very rarely used in practice, and the need to reference the IP address of a host in the network group makes it difficult to define safely. [1] https://docs.openstack.org/kayobe/latest/configuration/reference/network.html#global-network-configuration Story: 2008180 Task: 40937 Change-Id: I2c428ffc2b285aee03d8f59ae7cd3fb7230ce4ae
23 lines
644 B
YAML
23 lines
644 B
YAML
---
|
|
features:
|
|
- |
|
|
Adds the following new variables for the Kolla Ansible API VIP address and
|
|
FQDNs:
|
|
|
|
* ``kolla_internal_vip_address``
|
|
* ``kolla_internal_fqdn``
|
|
* ``kolla_external_vip_address``
|
|
* ``kolla_external_fqdn``
|
|
|
|
These variables should be used in preference to the ``vip_address`` and
|
|
``fqdn`` network attributes which are deprecated.
|
|
deprecations:
|
|
- |
|
|
The ``vip_address`` and ``fqdn`` network attributes are deprecated in
|
|
favour of the following variables:
|
|
|
|
* ``kolla_internal_vip_address``
|
|
* ``kolla_internal_fqdn``
|
|
* ``kolla_external_vip_address``
|
|
* ``kolla_external_fqdn``
|