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

最佳答案

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

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

  • oc port-forward <pod_name> 9999:8080,在另一个终端curl localhost:9999中,here命令参考
  • 设置ingress

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

    关于kubernetes - 无法在Pod中连接-从Pod获得响应时操作超时,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52211034/

    10-15 20:25