后
kubectl run -i -t load-generator --image=busybox /bin/sh
从我的外壳,我正在尝试
/ # wget http://wordpress.default.svc.cluster.local
Connecting to wordpress.default.svc.cluster.local (10.102.29.45:80)
wget: can't connect to remote host (10.102.29.45): No route to host
这些是我的 Kubernetes 服务
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
hello-node LoadBalancer 10.104.141.138 <pending> 8080:31321/TCP 3d21h app=hello-node
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 4d <none>
tomcat-deployment LoadBalancer 10.107.218.19 <pending> 8080:32688/TCP 3d16h app=tomcat
wordpress NodePort 10.102.29.45 <none> 80:31262/TCP 2d app=wordpress,tier=frontend
wordpress-mysql ClusterIP None <none> 3306/TCP 2d app=wordpress,tier=mysql
wget 也适用于谷歌
wget google.com
Connecting to google.com (216.58.214.206:80)
Connecting to www.google.com (216.58.209.164:80)
如何连接到我的节点?
尝试:
它应该返回如下内容:
如果它不起作用,请检查您的端点
kubectl get ep -o wide
以下命令将适用于同一命名空间中的服务:
或者,使用服务 IP:
请注意,如果 pod 无法正常工作,您将收到相同的错误,因为该服务会将您连接到无法正常工作的 pod。所以,也要检查你的 pod 健康状况。