Kiali jaegerURL should use jaeger-query service. (#3260)

* Kiali jaegerURL should use jaeger-query service.

Prior to change, while using the tracing service on port 90 for the jaegerURL, kiali would never get metrics to compose the service graphs.

Switching jaegerURL to jaeger-query service on port 16686 fixes the issue.  After traffic is generated the service graphs are built and visible in kiali.

* Remove clusterIP Query for grafana and jaeger-query services
This commit is contained in:
Daniel Linsley 2019-02-26 13:56:31 -08:00 committed by istio-bot
parent 2c72648099
commit 733870147c
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ integrates with them, you must pass additional arguments to the
{{< text bash >}}
$ helm template \
--set kiali.enabled=true \
--set "kiali.dashboard.jaegerURL=http://$(kubectl get svc tracing --namespace istio-system -o jsonpath='{.spec.clusterIP}'):80" \
--set "kiali.dashboard.grafanaURL=http://$(kubectl get svc grafana --namespace istio-system -o jsonpath='{.spec.clusterIP}'):3000" \
--set "kiali.dashboard.jaegerURL=http://jaeger-query:16686" \
--set "kiali.dashboard.grafanaURL=http://grafana:3000" \
install/kubernetes/helm/istio \
--name istio --namespace istio-system > $HOME/istio.yaml
$ kubectl apply -f $HOME/istio.yaml