You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have setup Jaeger as per the instructions from this post. I am unable to access the Jaeger UI in browser when I go to (http://myhost.com/jaeger). Instead of opening the dashboard the browser opens another website with domain myhost.com. I am attempting to open the dashboard from my PC on the corporate LAN.
Jaeger components are all setup :
`ks -n monitoring get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
jaeger-agent ClusterIP None 5775/UDP,6831/UDP,6832/UDP,5778/TCP 92m
jaeger-collector ClusterIP 10.110.225.20 14267/TCP,14268/TCP,9411/TCP 92m
jaeger-query ClusterIP 10.111.184.121 80/TCP 92m
zipkin ClusterIP None 9411/TCP 92m
ks -n ingress-nginx get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
ingress-nginx-controller LoadBalancer 10.111.102.209 17.168.1.181 80:32137/TCP,443:30505/TCP 4d9h
ingress-nginx-controller-admission ClusterIP 10.111.197.68 443/TCP 4d9h`
And the hosts file :
Jaeger is setup on a k0s cluster (on a Debian 10 Buster instance).
My understanding is that the host/Traefik configuration should make the Jaeger UI accessible outside the cluster.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
0
I have setup Jaeger as per the instructions from this post. I am unable to access the Jaeger UI in browser when I go to (http://myhost.com/jaeger). Instead of opening the dashboard the browser opens another website with domain myhost.com. I am attempting to open the dashboard from my PC on the corporate LAN.
Jaeger components are all setup :
`ks -n monitoring get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
jaeger-agent ClusterIP None 5775/UDP,6831/UDP,6832/UDP,5778/TCP 92m
jaeger-collector ClusterIP 10.110.225.20 14267/TCP,14268/TCP,9411/TCP 92m
jaeger-query ClusterIP 10.111.184.121 80/TCP 92m
zipkin ClusterIP None 9411/TCP 92m
ks -n ingress-nginx get services
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
ingress-nginx-controller LoadBalancer 10.111.102.209 17.168.1.181 80:32137/TCP,443:30505/TCP 4d9h
ingress-nginx-controller-admission ClusterIP 10.111.197.68 443/TCP 4d9h`
And the hosts file :
Jaeger is setup on a k0s cluster (on a Debian 10 Buster instance).
My understanding is that the host/Traefik configuration should make the Jaeger UI accessible outside the cluster.
Ingress config is as follows:
`apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: traefik
nginx.ingress.kubernetes.io/rewrite-target: /
ingress.kubernetes.io/auth-type: basic
ingress.kubernetes.io/auth-secret: my-auth-secret
name: jaegerquery-ingress
namespace: monitoring
spec:
rules:
http:
paths:
pathType: Prefix
backend:
service:
name: jaeger-query
port:
number: 80`
What am I missing ?
Beta Was this translation helpful? Give feedback.
All reactions