coredns配置集群外的dns服务器
Word Count: 232(words)
Read Count: 1(minutes)
原来的配置文件如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| .:53 { errors health { lameduck 5s } ready kubernetes cluster.local in-addr.arpa ip6.arpa { pods insecure fallthrough in-addr.arpa ip6.arpa ttl 30 } hosts { 192.168.1.175 git.swoole.com 192.168.1.188 registry.swoole.inc 192.168.1.136 gitlab.swoole.inc
fallthrough } prometheus :9153 forward . /etc/resolv.conf { max_concurrent 1000 } cache 30 loop reload loadbalance }
|
假设,我们有一个内网的dns
服务器192.168.1.129
,专门解析other.inc
域,我们可以加这么一段配置:
1 2 3 4 5 6 7 8
| other.inc.:53 { errors log prometheus :9153 loadbalance forward . 192.168.1.129 cache 30 }
|
最终配置文件如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| .:53 { errors health { lameduck 5s } ready kubernetes cluster.local in-addr.arpa ip6.arpa { pods insecure fallthrough in-addr.arpa ip6.arpa ttl 30 } hosts { 192.168.1.175 git.swoole.com 192.168.1.188 registry.swoole.inc 192.168.1.136 gitlab.swoole.inc
fallthrough } prometheus :9153 forward . /etc/resolv.conf { max_concurrent 1000 } cache 30 loop reload loadbalance }
other.inc.:53 { errors log prometheus :9153 loadbalance forward . 192.168.1.129 cache 30 }
|