Hi all,
I have a Istio 1.9.1 installed using istio operator.
When I issue
istioctl d kiali
The kiali console says
grafana Unreachable
jaeger Unreachable
I installed the addons using:
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.9/samples/addons/kiali.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.9/samples/addons/prometheus.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.9/samples/addons/grafana.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.9/samples/addons/jaeger.yaml
kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.9/samples/addons/extras/zipkin.yaml
Then I shutted down the cluster and then rebooted
Kubecl for istio-system namespace says
sysop@m-serv:~$ kubectl get all -n istio-system
NAME READY STATUS RESTARTS AGE
pod/jaeger-7f78b6fb65-xk2xg 1/1 Running 1 4h30m
pod/grafana-784c89f4cf-4hmxv 1/1 Running 1 4h33m
pod/zipkin-7fcd647cf9-7m5wg 1/1 Running 1 4h22m
pod/istiod-d4f7d664f-mpxcb 1/1 Running 1 4h59m
pod/istio-egressgateway-bd477794-wzmk5 1/1 Running 1 4h59m
pod/istio-ingressgateway-79df7c789f-22d4z 1/1 Running 1 4h59m
pod/prometheus-7bfddb8dbf-s6dl5 2/2 Running 2 4h36m
pod/svclb-istio-ingressgateway-4mdtv 5/5 Running 5 4h59m
pod/svclb-istio-ingressgateway-xtj7n 5/5 Running 5 4h59m
pod/kiali-dc84967d9-bzgvj 1/1 Running 1 4h43m
pod/svclb-istio-ingressgateway-cs5h5 5/5 Running 5 4h59m
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/istiod ClusterIP 10.43.181.186 <none> 15010/TCP,15012/TCP,443/TCP,15014/TCP 4h59m
service/istio-egressgateway ClusterIP 10.43.44.211 <none> 80/TCP,443/TCP,15443/TCP 4h59m
service/kiali ClusterIP 10.43.58.65 <none> 20001/TCP,9090/TCP 4h43m
service/prometheus ClusterIP 10.43.137.192 <none> 9090/TCP 4h36m
service/grafana ClusterIP 10.43.210.188 <none> 3000/TCP 4h33m
service/jaeger-collector ClusterIP 10.43.199.121 <none> 14268/TCP,14250/TCP 4h30m
service/tracing ClusterIP 10.43.138.19 <none> 80/TCP 4h30m
service/zipkin ClusterIP 10.43.4.23 <none> 9411/TCP 4h30m
service/istio-ingressgateway LoadBalancer 10.43.172.16 192.168.202.101,192.168.202.102,192.168.202.103 15021:30380/TCP,80:31104/TCP,443:31620/TCP,31400:32241/TCP,15443:32064/TCP 4h59m
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
daemonset.apps/svclb-istio-ingressgateway 3 3 3 3 3 <none> 4h59m
NAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/jaeger 1/1 1 1 4h30m
deployment.apps/grafana 1/1 1 1 4h33m
deployment.apps/zipkin 1/1 1 1 4h22m
deployment.apps/istiod 1/1 1 1 4h59m
deployment.apps/istio-ingressgateway 1/1 1 1 4h59m
deployment.apps/istio-egressgateway 1/1 1 1 4h59m
deployment.apps/prometheus 1/1 1 1 4h36m
deployment.apps/kiali 1/1 1 1 4h43m
NAME DESIRED CURRENT READY AGE
replicaset.apps/jaeger-7f78b6fb65 1 1 1 4h30m
replicaset.apps/grafana-784c89f4cf 1 1 1 4h33m
replicaset.apps/zipkin-7fcd647cf9 1 1 1 4h22m
replicaset.apps/istiod-d4f7d664f 1 1 1 4h59m
replicaset.apps/istio-egressgateway-bd477794 1 1 1 4h59m
replicaset.apps/istio-ingressgateway-79df7c789f 1 1 1 4h59m
replicaset.apps/prometheus-7bfddb8dbf 1 1 1 4h36m
replicaset.apps/kiali-dc84967d9 1 1 1 4h43m
sysop@m-serv:~$
“istioctl d grafana” works correctly
But jaeger dashboard says
sysop@m-serv:~/software/kubernetes$ istioctl d jaeger
http://localhost:16686
2021-03-08T16:42:22.647224Z error klog error copying from remote stream to local connection: readfrom tcp4 127.0.0.1:16686->127.0.0.1:52022: write tcp4 127.0.0.1:16686->127.0.0.1:52022: write: broken pipe
What I’m doing wrong?