13 lines
514 B
Markdown
13 lines
514 B
Markdown
## Networking
|
|
|
|
The minikube VM is exposed to the host system via a host-only IP address, that can be obtained with the `minikube ip` command.
|
|
Any services of type `NodePort` can be accessed over that IP address, on the NodePort.
|
|
|
|
To determine the NodePort for your service, you can use a `kubectl` command like this:
|
|
|
|
`kubectl get service $SERVICE --output='jsonpath="{.spec.ports[0].NodePort}"'`
|
|
|
|
We also have a shortcut for fetching the minikube IP and a service's `NodePort`:
|
|
|
|
`minikube service --url $SERVICE`
|