默认情况下,在Kubernetes 1.13中安装了CoreDNS。 您能告诉我如何使用服务名称在群集中进行卷发吗?
[root@master ~]# kubectl get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kubernetes ClusterIP 10.233.0.1 <none> 443/TCP 24h
[root@master ~]# kubectl get services --all-namespaces
NAMESPACE NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kube-system coredns ClusterIP 10.233.0.3 <none> 53/UDP,53/TCP,9153/TCP 21h
tools nexus-svc NodePort 10.233.17.152 <none> 8081:31991/TCP,5000:31111/TCP,8083:31081/TCP,8082:31085/TCP 14h
[root@master ~]# kubectl describe services nexus-svc --namespace=tools
Name: nexus-svc
Namespace: tools
Labels: tools=nexus
Annotations: kubectl.kubernetes.io/last-applied-configuration:
{"apiVersion":"v1","kind":"Service","metadata":{"annotations":{},"labels":{"tools":"nexus"},"name":"nexus-svc","namespace":"tools"},"spec"...
Selector: tools=nexus
Type: NodePort
IP: 10.233.17.152
Port: http 8081/TCP
.....
所以我得到正确的答案。
[root@master ~]# curl http://10.233.17.152:8081
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nexus Repository Manager</title>
....
所以不。
[root@master ~]# curl http://nexus-svc.tools.svc.cluster.local
curl: (6) Could not resolve host: nexus-svc.tools.svc.cluster.local; Unknown error
[root@master ~]# curl http://nexus-svc.tools.svc.cluster.local:8081
curl: (6) Could not resolve host: nexus-svc.tools.svc.cluster.local; Unknown error
谢谢。
答案 0 :(得分:2)
coredns
或kubedns
用于将服务名称解析为其clusterIP
(正常服务)或kubernetes集群内部而不是外部的对应Pod IP(无头服务)。您正在尝试在节点上而不是Pod内卷曲服务名称,因此它无法将服务名称解析为其clusterIP。
您可以进入吊舱并尝试以下操作:
kubectl exec -it <pod_name> bash
nslookup nexus-svc.tools.svc.cluster.local
它将返回您的群集IP,这意味着coredns
正常运行。如果您的Pod具有curl实用程序,那么您也可以使用服务名称对其进行卷曲(但仅限于群集内部)
如果您想从群集外部访问该服务,则该服务已经显示为NodePort
,因此您可以使用以下命令访问它:
curl http://<node_ip>:31991
希望这会有所帮助。