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

Failed to connect in Pod - Operation timed out when getting the response from pod

下载文件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

它将 return IP 地址,假设:

podIP: 172.17.0.6

执行命令:

curl 172.17.0.6:8080

会return 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

您的命令 curl 172.17.0.6:8080 可以在 pod 中运行。

如果你想从你的终端(本地主机)连接,你有这些方法:

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

  2. 设置一个ingress

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