Merge pull request #11680 from kubernetes/medyagh-patch-8

site: how to run minikube on remote network
pull/11665/head^2
Medya Ghazizadeh 2021-06-17 13:10:38 -04:00 committed by GitHub
commit a6eb5cd5b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -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
```