无法在Pod中连接-从Pod获得响应时操作超时

时间:2018-09-06 19:33:46

标签: kubernetes openshift openshift-client-tools

下载文件https://github.com/openshift/origin/blob/master/examples/hello-openshift/hello-pod.json并执行以下命令:

oc cluster up
oc create -f hello-pod.json
oc get pod hello-openshift -o yaml |grep podIP

它将返回IP地址,假设:

podIP: 172.17.0.6

执行命令:

curl 172.17.0.6:8080

它将返回 curl:(7)无法连接到172.17.0.6端口8080:操作超时

信息:

oc v3.10.0+dd10d17
kubernetes v1.10.0+b81c8f8
features: Basic-Auth

Server https://127.0.0.1:8443
openshift v3.10.0+e3465d0-44
kubernetes v1.10.0+b81c8f8

1 个答案:

答案 0 :(得分:1)

您的命令curl 172.17.0.6:8080将在吊舱内部运行。

如果要从终端(本地主机)进行连接,则可以采用以下方法:

  1. oc port-forward <pod_name> 9999:8080并在另一个终端curl localhost:9999中,here命令参考

  2. 设置一个ingress

最快的调试方法是选项1。