首页
随机
最近更改
特殊页面
社群首页
参数设置
关于WHY42
免责声明
WHY42
搜索
用户菜单
登录
欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
查看“︁K8s:自定义域名解析”︁的源代码
←
K8s:自定义域名解析
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
<syntaxhighlight lang="bash"> kubectl -n kube-system get pods -l k8s-app=kube-dns kubectl edit cm coredns -n kube-system kubectl delete pod --namespace kube-system --selector k8s-app=kube-dns kubectl run -it --rm --restart=Never busybox --image=busybox:1.28 -- nslookup registry.example.com </syntaxhighlight> 改成如下: <pre> data: Corefile: | .:53 { errors health ready kubernetes cluster.local in-addr.arpa ip6.arpa { pods insecure fallthrough in-addr.arpa ip6.arpa } hosts /etc/coredns/NodeHosts { ttl 60 reload 15s fallthrough } prometheus :9153 forward . /etc/resolv.conf cache 30 loop reload loadbalance } NodeHosts: | 192.168.79.102 node02 192.168.79.101 node01 192.168.79.100 master 192.168.56.1 registry.example.com </pre> * https://rancher.com/docs/rancher/v2.5/en/troubleshooting/dns/ * https://stackoverflow.com/questions/37166822/is-there-a-way-to-add-arbitrary-records-to-kube-dns * https://docs.microsoft.com/en-us/azure/aks/coredns-custom [[Category:Linux/Unix]]
返回
K8s:自定义域名解析
。