99-origin-dns.sh 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #!/bin/bash -x
  2. # This NetworkManager dispatcher script replicates the functionality of
  3. # NetworkManager's dns=dnsmasq however, rather than hardcoding the listening
  4. # address and /etc/resolv.conf to 127.0.0.1 it pulls the IP address from the
  5. # interface that owns the default route. This enables us to then configure pods
  6. # to use this IP address as their only resolver, where as using 127.0.0.1 inside
  7. # a pod would fail.
  8. #
  9. # To use this,
  10. # Drop this script in /etc/NetworkManager/dispatcher.d/
  11. # systemctl restart NetworkManager
  12. # Configure node-config.yaml to set dnsIP: to the ip address of this
  13. # node
  14. #
  15. # Test it:
  16. # host kubernetes.default.svc.cluster.local
  17. # host google.com
  18. #
  19. # TODO: I think this would be easy to add as a config option in NetworkManager
  20. # natively, look at hacking that up
  21. cd /etc/sysconfig/network-scripts
  22. . ./network-functions
  23. [ -f ../network ] && . ../network
  24. if [[ $2 =~ ^(up|dhcp4-change)$ ]]; then
  25. # couldn't find an existing method to determine if the interface owns the
  26. # default route
  27. def_route=$(/sbin/ip route list match 0.0.0.0/0 | awk '{print $3 }')
  28. def_route_int=$(/sbin/ip route get to ${def_route} | awk '{print $3}')
  29. def_route_ip=$(/sbin/ip route get to ${def_route} | awk '{print $5}')
  30. if [[ ${DEVICE_IFACE} == ${def_route_int} ]]; then
  31. if [ ! -f /etc/dnsmasq.d/origin-dns.conf ]; then
  32. cat << EOF > /etc/dnsmasq.d/origin-dns.conf
  33. strict-order
  34. no-resolv
  35. domain-needed
  36. server=/cluster.local/172.30.0.1
  37. server=/30.172.in-addr.arpa/172.30.0.1
  38. EOF
  39. fi
  40. # zero out our upstream servers list and feed it into dnsmasq
  41. echo '' > /etc/dnsmasq.d/origin-upstream-dns.conf
  42. for ns in ${DHCP4_DOMAIN_NAME_SERVERS}; do
  43. echo "server=${ns}" >> /etc/dnsmasq.d/origin-upstream-dns.conf
  44. done
  45. echo "listen-address=${def_route_ip}" >> /etc/dnsmasq.d/origin-upstream-dns.conf
  46. systemctl restart dnsmasq
  47. sed -i 's/^nameserver.*$/nameserver '"${def_route_ip}"'/g' /etc/resolv.conf
  48. echo "# nameserver updated by /etc/NetworkManager/dispatcher.d/99-origin-dns.sh" >> /etc/resolv.conf
  49. fi
  50. fi