I have 2 pc:
- Ubuntu Server 20.04.2 LTS
- Windows
I installed minikube + virtualbox (host-only) on 1). When I deploy app on minikube I can't reach it from pc 2) (because host-only I guess).
How can I expose minikube app for pc 2) ?
I have 2 pc:
I installed minikube + virtualbox (host-only) on 1). When I deploy app on minikube I can't reach it from pc 2) (because host-only I guess).
How can I expose minikube app for pc 2) ?
Solved by this commands:
minikube service hello-minikube
kubectl port-forward --address 0.0.0.0 service/hello-minikube 8081:8080