I am running a self hosted Kubernetes Cluster with a traefik.io load balancer.
I installed the longhorn storage solution for kubernetes - everything looks fine. All pods are up and running.
My question is:
How can I publish the longhorn-ui as a service via my existing traefik load balancer?
I can see that a longhorn-frontend resource is deployed as a LoadBalacer already.
$ kubectl get services -n longhorn-system
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
compatible-csi-attacher ClusterIP 10.102.249.45 <none> 12345/TCP 4m35s
csi-attacher ClusterIP 10.103.251.27 <none> 12345/TCP 4m35s
csi-provisioner ClusterIP 10.108.167.50 <none> 12345/TCP 4m35s
longhorn-backend ClusterIP 10.100.244.54 <none> 9500/TCP 5m3s
longhorn-frontend LoadBalancer 10.106.215.216 <pending> 80:32699/TCP 5m3s
Can anybody give me a hint how to setup the longhorn-ui with trafik?
===
Ralph