You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/en/docs/Installation/Creating Cluster/minikube.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,8 @@ via Agones exposed ports.
55
55
**Windows (amd64 - Windows 10 Enterprise or Pro)**
56
56
* Hyper-V: You might need to refer to [this blog post](https://blog.thepolyglotprogrammer.com/setting-up-kubernetes-on-wsl-to-work-with-minikube-on-windows-10-90dac3c72fa1) and/or [this comment](https://github.com/microsoft/WSL/issues/4288#issuecomment-652259640) for WSL support.
57
57
58
-
**Windows (amd64 - Windows 10 Home)**
58
+
**Windows (amd64)**
59
+
* Docker (default) with [this workaround](#minikube-start---ports-docker-only)
59
60
* VirtualBox: You might need [this command](https://github.com/kubernetes/minikube/issues/3900) to disable hardware virtualization checks before starting the VM.
60
61
61
62
_If you have successfully tested with other platforms and drivers, please click "edit this page" in the top right hand
@@ -73,6 +74,33 @@ If you are unable to do so, the following workarounds are available, and may wor
73
74
Rather than using the published IP of a `GameServer` to connect, run `minikube ip -p agones` to get the local IP for
74
75
the minikube node, and connect to that address.
75
76
77
+
### minikube start \-\-ports (Docker only)
78
+
79
+
Since you cannot connect to minikube's private IP on Windows, a more reliable option is to publish the `GameServer`'s port range
80
+
directly through Docker by making use of Minikube's `--ports` option. Unfortunately, exposing Agones' entire default port range
81
+
(7000-8000) may cause Minikube to crash upon startup, so you will likely need to set a narrower port range as shown below.
82
+
83
+
This method requires a fresh Minikube cluster, so you may need to run `minikube delete -p agones` before continuing.
0 commit comments