Skip to content
Snippets Groups Projects
Commit 36e93326 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Set correct gateway for the bifrost provision network"

parents abb2edd8 0c2a35ed
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
# Network configuration.
kolla_bifrost_dhcp_pool_start: "{{ provision_oc_net_name | net_inspection_allocation_pool_start }}"
kolla_bifrost_dhcp_pool_end: "{{ provision_oc_net_name | net_inspection_allocation_pool_end }}"
kolla_bifrost_dnsmasq_router: "{{ provision_oc_net_name | net_gateway }}"
kolla_bifrost_dnsmasq_router: "{{ provision_oc_net_name | net_inspection_gateway or provision_oc_net_name | net_gateway }}"
kolla_bifrost_dnsmasq_dns_servers: "{{ resolv_nameservers | default([]) }}"
kolla_bifrost_domain: "{{ resolv_domain | default }}"
kolla_bifrost_download_ipa: "{{ not ipa_build_images | bool }}"
......
---
fixes:
- |
In production environments, the provision network may be separated from the
other networks, so in this case, if you want Bifrost's DHCP service provides
the correct gateway for the clients the ``inspection_gateway`` should be
used instead of the ``gateway`` attribute for the provision network. This
also avoids configuring the multiple IP gateways on a single host which
leads to unpredictable results.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment