在 Traefik 1.7 日志中找不到 influx/blockchain-influxdb-local 的服务

Service not found for influx/blockchain-influxdb-local" in Traefik 1.7 logs

我有一个带有 traefik 1.7 的 K8s 集群

在 Traefik 日志中,我得到:

Service not found for influx/blockchain-influxdb-local" 2020-07-24T21:18:26.8761657Z time="2020-07-24T21:18:26Z" level=error msg="Service not found for influx/influxdb-local

这可能是因为有时我将本地服务部署到生产环境。

但我找不到任何调用 influxdb-local 的服务。事实上,搜索所有内容,我找不到任何本地的。

我能做什么?

你的Ingress配置了吗❓

kubectl get ingress --all-namespaces -o=yaml | grep influx

是否配置在某个ConfigMaps或其他资源中的某个地方❓

kubectl get cm --all-namespaces -o=yaml | grep influx
kubectl get deploy --all-namespaces -o=yaml | grep influx
kubectl get ds --all-namespaces -o=yaml | grep influx
kubectl get sts --all-namespaces -o=yaml | grep influx

✌️☮️