diff options
author | Jason DeTiberus <detiber@gmail.com> | 2016-05-12 15:25:10 -0400 |
---|---|---|
committer | Jason DeTiberus <detiber@gmail.com> | 2016-05-12 15:25:10 -0400 |
commit | bd31b4805271e88e8ca32c3cda63dc95fd9589e7 (patch) | |
tree | 27073cb65d1c619f9bfc5e696b6358a923185365 /roles | |
parent | 1165565b15f27d913a10ba64441608d76907c3ba (diff) | |
parent | b457e27d36099700c89dabcca94e6fe50f8af524 (diff) | |
download | openshift-bd31b4805271e88e8ca32c3cda63dc95fd9589e7.tar.gz openshift-bd31b4805271e88e8ca32c3cda63dc95fd9589e7.tar.bz2 openshift-bd31b4805271e88e8ca32c3cda63dc95fd9589e7.tar.xz openshift-bd31b4805271e88e8ca32c3cda63dc95fd9589e7.zip |
Merge pull request #1875 from sdodson/fix-static-interfaces
Use IP4_NAMESERVERS rather than DHCP4_DOMAIN_NAME_SERVERS
Diffstat (limited to 'roles')
-rwxr-xr-x | roles/openshift_node_dnsmasq/files/networkmanager/99-origin-dns.sh | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/roles/openshift_node_dnsmasq/files/networkmanager/99-origin-dns.sh b/roles/openshift_node_dnsmasq/files/networkmanager/99-origin-dns.sh index 691fa32f3..09bae1777 100755 --- a/roles/openshift_node_dnsmasq/files/networkmanager/99-origin-dns.sh +++ b/roles/openshift_node_dnsmasq/files/networkmanager/99-origin-dns.sh @@ -8,10 +8,12 @@ # a pod would fail. # # To use this, -# Drop this script in /etc/NetworkManager/dispatcher.d/ -# systemctl restart NetworkManager -# Configure node-config.yaml to set dnsIP: to the ip address of this -# node +# - If this host is also a master, reconfigure master dnsConfig to listen on +# 8053 to avoid conflicts on port 53 and open port 8053 in the firewall +# - Drop this script in /etc/NetworkManager/dispatcher.d/ +# - systemctl restart NetworkManager +# - Configure node-config.yaml to set dnsIP: to the ip address of this +# node # # Test it: # host kubernetes.default.svc.cluster.local @@ -31,7 +33,8 @@ if [[ $2 =~ ^(up|dhcp4-change)$ ]]; then def_route=$(/sbin/ip route list match 0.0.0.0/0 | awk '{print $3 }') def_route_int=$(/sbin/ip route get to ${def_route} | awk '{print $3}') def_route_ip=$(/sbin/ip route get to ${def_route} | awk '{print $5}') - if [[ ${DEVICE_IFACE} == ${def_route_int} ]]; then + if [[ ${DEVICE_IFACE} == ${def_route_int} && \ + -n "${IP4_NAMESERVERS}" ]]; then if [ ! -f /etc/dnsmasq.d/origin-dns.conf ]; then cat << EOF > /etc/dnsmasq.d/origin-dns.conf strict-order @@ -42,8 +45,8 @@ server=/30.172.in-addr.arpa/172.30.0.1 EOF fi # zero out our upstream servers list and feed it into dnsmasq - echo '' > /etc/dnsmasq.d/origin-upstream-dns.conf - for ns in ${DHCP4_DOMAIN_NAME_SERVERS}; do + echo -n > /etc/dnsmasq.d/origin-upstream-dns.conf + for ns in ${IP4_NAMESERVERS}; do echo "server=${ns}" >> /etc/dnsmasq.d/origin-upstream-dns.conf done systemctl restart dnsmasq |