-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors running kind on windows 7 using docker toolbox #377
Comments
this seems like a viable fix to me. thank you. /kind documentation |
So FWIW I use docker desktop and haven't had issues. It's been a while since I ran on windows which might explain the patching regression. |
It seems that different docker implementations on the OSs are another factor to take into account, docker desktop vs docker toolbox is totally different. I've run I think that having a supportability table like this in the docs will help the users
|
perhaps slightly more clear:
|
I'm not a fan of how nearly 50% of that table is non-existent combinations though... |
yep, the table doesn't add too much value, it's more related to Docker OS compatibility |
Docker toolbox is considered legacy, |
To make kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
apiServerAddress: 192.168.99.100 Another workaround is to make kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
apiServerPort: 6443 In the example config below I have used both settings: kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
apiServerAddress: 192.168.99.100
apiServerPort: 6443
|
I was trying to use
kind
on Windows 7 with Docker-toolbox and I've found the following issues that I think makes this combination hard or very difficult to support:kind
uses privileged containers and remount directories, this screws up the docker-toolbox VM and you can't use docker commands that fails with the following errordocker: Error response from daemon: cgroups: cannot found cgroup mount destination: unknown.
A workaround is resetting the VirtualBox VM
kind
fails to create thekubedm config
, seems that's related to the way that go handles windows directories,however, is easy to fix with the following patch
kind
fails with the following error .... :and then I gave up :)
The text was updated successfully, but these errors were encountered: