Hey all,
Got around to installing Kiali to get some insight into how my mesh is working, and it’s complaining about errors in Istio config. More precisely, it states all my VS have errors (KIA1101: DestinationWeight on route doesn’t have a valid service (host not found)). Thing is, that the services exist and Istio is routing traffic just fine. It even complains about ingress-gateway. Example:
spec:
hosts:
- '*'
gateways:
- istio-ingressgateway
http:
- match:
- headers:
user-agent:
prefix: GoogleHC
method:
exact: GET
uri:
exact: /
rewrite:
authority: 'istio-ingressgateway.istio-system.svc.cluster.local:15021'
uri: /healthz/ready
route:
- destination:
host: istio-ingressgateway.istio-system.svc.cluster.local
port:
number: 15021
It complains that host: istio-ingressgateway.istio-system.svc.cluster.local
doesn’t exist.
Any idea what I could be missing here, or is this a case of ignoring what Kiali is telling me?
TIA,
P