Search code examples
kubernetesyamldashboardkubectlminikube

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


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 ?


Solution

  • 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.