VirtualServiceUnreachableRule
当 Virtual Service 包含一个永远不会使用的匹配规则时,会出现此消息,因为之前的规则中指定了相同的匹配规则。
当多个规则不存在任何匹配时,该消息也会出现。
示例
当您的集群中包含下列 Virtual Service 时:
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: sample-foo-cluster01
namespace: foo
spec:
hosts:
- sample.foo.svc.cluster.local
http:
- fault:
delay:
fixedDelay: 5s
percentage:
value: 100
route:
- destination:
host: sample.foo.svc.cluster.local
- mirror:
host: sample.bar.svc.cluster.local
route:
- destination:
host: sample.bar.svc.cluster.local
subset: v1
您将会收到以下警告信息:
Warning [IST0130] (VirtualService sample-foo-cluster01.default) VirtualService rule #1 not used (only the last rule can have no matches).
在这个示例中, Virtual Service 同时指定了 fault 和 mirror 。允许同时使用,但是必须在同一个路由下。这里用户使用了两个不同的 http 路由(-
),第一个会覆盖第二个。
解决方案
当您有一个没有被 match
的 http
,那么只能存在一个 http 路由。在这个示例中,移除 mirror
之前无法匹配的路由 "-"
,最终的结果为:发生故障且进行镜像的路由,而不是一条故障路由和一条镜像路由。
设置负载的路由时,请小心处理 YAML 文件格式。
重新排列您的路线,将最具体的路由放在前面。请在最后配置 ‘catch all’ 路线。