Add custom for dns interface

This commit is contained in:
Kevin TIBI 2017-11-10 09:55:51 +00:00
parent e93102ccf2
commit 1ff98a6637
3 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,7 @@
kolla_cluster_interface: "{{ storage_mgmt_net_name | net_interface(controller_host) | replace('-', '_') }}"
kolla_provision_interface: "{{ provision_wl_net_name | net_interface(controller_host) | replace('-', '_') }}"
kolla_inspector_dnsmasq_interface: "{{ provision_wl_net_name | net_interface(controller_host) | replace('-', '_') }}"
kolla_dns_interface: "{{ public_net_name | net_interface(controller_host) | replace('-', '_') }}"
- name: Validate controller Kolla Ansible network configuration
fail:

View File

@ -121,6 +121,7 @@ kolla_external_vip_interface:
kolla_api_interface:
kolla_storage_interface:
kolla_cluster_interface:
kolla_dns_interface:
# This is the raw interface given to neutron as its external network port. Even
# though an IP address can exist on this interface, it will be unusable in most

View File

@ -84,6 +84,7 @@ kolla_external_vip_interface: "{{ kolla_external_vip_interface }}"
api_interface: "{{ kolla_api_interface }}"
storage_interface: "{{ kolla_storage_interface }}"
cluster_interface: "{{ kolla_cluster_interface }}"
dns_interface: "{{ kolla_dns_interface }}"
# NOTE: tunnel_interface is unused.
# This is the raw interface given to neutron as its external network port. Even