我刚刚在Kubernetes上安装了OpenFaaS,并且能够部署和调用一个简单的hello-world类型的函数(这意味着OpenFaaS工作正常)。然而,the guide I am following声明我应该能够在http://localhost:9090/上访问Prometheus UI。单击该链接将导致一条错误消息:
This site can’t be reached - localhost refused to connect. ERR_CONNECTION_REFUSED如何在OpenFaaS中查看Prometheus UI?
发布于 2019-07-30 01:49:19
弄清楚了,你必须先运行这个命令:kubectl port-forward deployment/prometheus 9090:9090 -n openfaas
https://stackoverflow.com/questions/57102546
复制相似问题