How can i make my kubernetes dashboard accessible in my local network using my IP address or a local DNs

9/25/2019

I have used kubectl proxy to access the kubernetes dashboard but i want to make it accessible now to my co-worker. Do i need a load balancer or there is a more efficient way ?

-- frostarcher
dashboard
kubectl
kubernetes
minikube
yaml

1 Answer

9/25/2019

You should take a look at the Ingress resource, you can use those to expose multiple Services under the same IP address.

Another option are Services of type NodePort. You can use those to expose a Service on a port of each Node in the cluster.

-- Alassane Ndiaye
Source: StackOverflow