【发布时间】:2020-04-03 16:39:23
【问题描述】:
我们有一个将出口流量路由到服务网格之外的外部服务的最小示例。
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
name: nexus-test
namespace: REDACTED
spec:
hosts:
- nexus.REDACTED
ports:
- number: 443
name: https
protocol: HTTPS
resolution: DNS
location: MESH_EXTERNAL
但是我们没有看到使用命令通过 sidecar istio-proxy 的流量
kubectl logs $SOURCE_POD -c istio-proxy | tail
此外,使用以下命令我们没有看到混音器上的流量:
kubectl -n istio-system logs -l istio-mixer-type=telemetry -c mixer | grep 'nexus'
谁能帮助我们解决问题?
最好的问候, rforberger
【问题讨论】:
-
我在出口网关日志中看到以下内容:
[debug][init] [external/envoy/source/common/init/manager_impl.cc:45] init manager Cluster outbound|443||nexus.REDACTED contains no targets在试验中:RejectedTCP=nexus.REDACTED
标签: kubernetes istio