From 733870147c9a93c93974be77543f42e855f110c7 Mon Sep 17 00:00:00 2001 From: Daniel Linsley Date: Tue, 26 Feb 2019 13:56:31 -0800 Subject: [PATCH] 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 --- content/docs/tasks/telemetry/kiali/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/tasks/telemetry/kiali/index.md b/content/docs/tasks/telemetry/kiali/index.md index 7157d18aa7..8f62accc1a 100644 --- a/content/docs/tasks/telemetry/kiali/index.md +++ b/content/docs/tasks/telemetry/kiali/index.md @@ -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