gpt4 book ai didi

docker - 从 istio bookinfo 示例中获取 404

转载 作者:行者123 更新时间:2023-12-02 21:03:09 26 4
gpt4 key购买 nike

我正在尝试通过此处的 Istio 快速入门指南进行操作,但在执行 confirm the app is accessible from outside the cluster 步骤时遇到了问题.

我在 Mac 上运行 docker for desktop 而不是 minikube。

docker desktop version information

我也在工作中的代理后面,但即使我绕过代理,我也会收到以下错误:

$ curl http://${GATEWAY_URL}/productpage -v
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connection failed
* connect to 127.0.0.1 port 30489 failed: Connection refused
* Failed to connect to 127.0.0.1 port 30489: Connection refused
* Closing connection 0

curl: (7) Failed to connect to 127.0.0.1 port 30489: Connection refused

pods 正在运行:
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
details-v1-c5b5f496d-ccw5f 2/2 Running 0 18h
productpage-v1-c7765c886-xm2jd 2/2 Running 0 18h
ratings-v1-f745cf57b-5df2q 2/2 Running 0 18h
reviews-v1-75b979578c-jtc5l 2/2 Running 0 18h
reviews-v2-597bf96c8f-g7bzd 2/2 Running 0 18h
reviews-v3-54c6c64795-gbqqj 2/2 Running 0 18h

我可以从一个 pods 内 curl 它:
$ kubectl exec -it $(kubectl get pod -l app=ratings -o jsonpath='{.items[0].metadata.name}') -c ratings -- curl productpage:9080/productpage | grep -o "<title>.*</title>"
<title>Simple Bookstore App</title>

我不确定我可能做错了什么。非常感谢任何指导!

最佳答案

由于this post,我发现了困惑在 istio 社区中。在那篇文章中,他们提到要找到入口端口,他们正在运行以下命令:

export INGRESS_PORT=$(kubectl -n istio-system get service istio- ingressgateway -o jsonpath='{.spec.ports[?(@.name=="http2")].port}')

这与 bookinfo tutorial 上的指示不同。在第 3 步时,您被要求前往 here确定您的入口主机和端口。在那里,如果你在本地运行并且没有公共(public)负载均衡器,你会被告知像这样拉节点端口:
export INGRESS_PORT=$(kubectl -n istio-system get service istio-ingressgateway -o jsonpath='{.spec.ports[?(@.name=="http2")].nodePort}')
export SECURE_INGRESS_PORT=$(kubectl -n istio-system get service istio-ingressgateway -o jsonpath='{.spec.ports[?(@.name=="https")].nodePort}')

如果我改为将 json 元素更改为“端口”,它会完美运行!
export INGRESS_PORT=$(kubectl -n istio-system get service istio-ingressgateway -o jsonpath='{.spec.ports[?(@.name=="http2")].port}')

教程中的示例 curl:
$ curl -v -s http://127.0.0.1:80/productpage | grep -o "<title>.*</title>"
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> GET /productpage HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.54.0
> Accept: */*
>
< HTTP/1.1 200 OK
< content-type: text/html; charset=utf-8
< content-length: 4183
< server: istio-envoy
< date: Tue, 24 Dec 2019 20:28:55 GMT
< x-envoy-upstream-service-time: 940
<
{ [4183 bytes data]
* Connection #0 to host 127.0.0.1 left intact
<title>Simple Bookstore App</title>

希望这可以帮助像我一样挣扎的人。

关于docker - 从 istio bookinfo 示例中获取 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59471493/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com