Skip to content

Commit

Permalink
Merge pull request #11680 from kubernetes/medyagh-patch-8
Browse files Browse the repository at this point in the history
site: how to run minikube on remote network
  • Loading branch information
medyagh authored Jun 17, 2021
2 parents 54d8250 + ddea20b commit a6eb5cd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions site/content/en/docs/faq/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,16 @@ Yes! If you prefer not having emoji in your minikube output 😔 , just set the
MINIKUBE_IN_STYLE=0 minikube start
```

## How can I access a minikube cluster from a remote network?

minikube's primary goal is to quickly set up local Kubernetes clusters, and therefore we strongly discourage using minikube in production or for listening to remote traffic. By design, minikube is meant to only listen on the local network.

However, it is possible to configure minikube to listen on a remote network. This will open your network to the outside world and is not recommended. If you are not fully aware of the security implications, please avoid using this.

For the docker and podman driver, use `--listen-address` flag:

```
minikube start --listen-address=0.0.0.0
```

0 comments on commit a6eb5cd

Please sign in to comment.