diff --git a/releasenotes/notes/container-extra-networks-c74119ba6a559a59.yaml b/releasenotes/notes/container-extra-networks-c74119ba6a559a59.yaml new file mode 100644 index 0000000..2595c50 --- /dev/null +++ b/releasenotes/notes/container-extra-networks-c74119ba6a559a59.yaml @@ -0,0 +1,8 @@ +--- +features: + - If defined in applicable host or group vars the variable + ``container_extra_networks`` will be merged with the existing + ``container_networks`` from the dynamic inventory. This allows a deployer + to specify special interfaces which may be unique to an indivdual + container. An example use for this feature would be applying known + fixed IP addresses to public interfaces on BIND servers for designate. diff --git a/vars/main.yml b/vars/main.yml index 4c5cade..17a4af0 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -14,6 +14,7 @@ # limitations under the License. # A set of container networks used within the LXC containers. This information -# is sourced from the assumed "container_networks" and "lxc_container_networks" -# variables and combined into a single immutable hash. -lxc_container_networks_combined: "{{ container_networks | default({}) | combine(lxc_container_networks) }}" +# is sourced from the assumed "container_networks", "container_extra_networks" +# and "lxc_container_networks" variables and combined into a single +# immutable hash. +lxc_container_networks_combined: "{{ container_networks | default({}) | combine(container_extra_networks | default({})) | combine(lxc_container_networks) }}"