How to expose minikube service urls to outside system

1/25/2018

I 've apache camel application deployed on kubernetes. My application is esposed in kubernetes cluster which is accessible at http://192.168.99.100:31750. so how to make it accessiible accross.

-- Vinod Bhoier
apache
apache-camel
kubernetes
minikube

1 Answer

1/25/2018

I suggest you do 2 things :

  • run an NginX Ingress Controller in your minikube and expose it with NodePort service. Meaning it will be available somewhat similar to your service right now (high port range)
  • run HAProxy on your host that runs minikube that will forward 80/443 port to your high ports on minikube (ie. 80->32080, 443->32443)

that way you can expose your ingress controller on standard ports and have your services exposed with regular kubernetes Ingress definitions on these ports.

-- Radek 'Goblin' Pieczonka
Source: StackOverflow