Hi all,
I’m using Istio 1.4.3 installed with the demo profile and Kiali gives this error in the home page:
Jaeger URL in cluster is not set in Kiali configuration
But in the Kiali config map I have:
{
"config.yaml": "istio_component_namespaces:
grafana: istio-system
tracing: istio-system
pilot: istio-system
prometheus: istio-system
istio_namespace: istio-system
deployment:
accessible_namespaces: ['**']
server:
port: 20001
web_root: /kiali
external_services:
istio:
url_service_version: http://istio-pilot.istio-system:8080/version
tracing:
url: http://tracing:80
grafana:
url: http://graphana:3000
prometheus:
url: http://prometheus.istio-system:9090
jaeger:
url: http://tracing:80
"
}
And I see these services:
sysop@hoseplak3s:~/software/istio-1.4.3$ sudo kubectl get svc -n istio-system
[sudo] password di sysop:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
jaeger-agent ClusterIP None <none> 5775/UDP,6831/UDP,6832/UDP 4d5h
jaeger-collector ClusterIP 10.43.206.133 <none> 14267/TCP,14268/TCP,14250/TCP 4d5h
jaeger-query ClusterIP 10.43.82.190 <none> 16686/TCP 4d5h
tracing ClusterIP 10.43.241.194 <none> 80/TCP 4d5h
zipkin ClusterIP 10.43.13.172 <none> 9411/TCP 4d5h
kiali ClusterIP 10.43.148.223 <none> 20001/TCP 4d5h
istio-galley ClusterIP 10.43.138.175 <none> 443/TCP,15014/TCP,9901/TCP,15019/TCP 4d5h
prometheus ClusterIP 10.43.67.79 <none> 9090/TCP 4d5h
istio-sidecar-injector ClusterIP 10.43.160.53 <none> 443/TCP 4d5h
istio-citadel ClusterIP 10.43.94.59 <none> 8060/TCP,15014/TCP 4d5h
grafana ClusterIP 10.43.35.24 <none> 3000/TCP 4d5h
istio-policy ClusterIP 10.43.131.225 <none> 9091/TCP,15004/TCP,15014/TCP 4d5h
istio-egressgateway ClusterIP 10.43.60.152 <none> 80/TCP,443/TCP,15443/TCP 4d5h
istio-pilot ClusterIP 10.43.194.84 <none> 15010/TCP,15011/TCP,8080/TCP,15014/TCP 4d5h
istio-telemetry ClusterIP 10.43.107.127 <none> 9091/TCP,15004/TCP,15014/TCP,42422/TCP 4d5h
istio-ingressgateway LoadBalancer 10.43.52.147 192.168.202.10 15020:30829/TCP,80:31047/TCP,443:31520/TCP,15029:30626/TCP,15030:32534/TCP,15031:30744/TCP,15032:31932/TCP,15443:30726/TCP 4d5h
sysop@hoseplak3s:~/software/istio-1.4.3$
The URL (corresponding to tracing service)
shows the Jaeger UI home page
What I’m doing wrong?