0

I have 2 pc:

  1. Ubuntu Server 20.04.2 LTS
  2. 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) ?

1 Answers1

1

Solved by this commands:

minikube service hello-minikube
kubectl port-forward --address 0.0.0.0 service/hello-minikube 8081:8080