-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Add solution message for unsupported legacy docker versions #10282
Comments
here in the code we check for docker verison and also another place to check is if the output of that command is err and error contains "template: :1: unexpected "=" in operan" |
Similar to #9077 |
@ilya-zuyev I am new to this repo. Can you guide me in closing this issue? I would love to help in solving this |
❯ docker network inspect multinode-20210127144027-24120 -v
[
{
"Name": "multinode-20210127144027-24120",
"Id": "32fef472bdd241739730ef91063aa64dee59b0a0edac52b8948541642e6759b5",
"Created": "2021-01-27T22:41:41.5335495Z",
"Scope": "local",
"Driver": "bridge",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": {},
"Config": [
{
"Subnet": "192.168.49.0/24",
"Gateway": "192.168.49.1"
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {},
"Options": {
"--icc": "",
"--ip-masq": "",
"com.docker.network.driver.mtu": "1500"
},
"Labels": {
"created_by.minikube.sigs.k8s.io": "true"
}
}
] |
I think you mean 18.09 ? i.e. we don't want to support 18.06 https://docs.docker.com/engine/release-notes/#version-2010 https://docs.docker.com/engine/release-notes/19.03/ https://docs.docker.com/engine/release-notes/18.09/
EDIT: Don't need to drop 18.09 for this particular issue. Maybe if we want to support system, for older distributions ? https://packages.ubuntu.com/search?keywords=docker.io See #10089 |
@medyagh : as per previous notes, this now excludes RHEL 7 It has Docker 1.13.1 (from 2017) and Podman 1.6. But also KVM. |
We do not support old docker daemon versions in docker driver because of
docker network inspect minikube
output format. But the error message is very confusing (see below). We need to check docker version on start and if it's too old (>18.06.3 should be fine, but need to verify) we should report an error and exitThe text was updated successfully, but these errors were encountered: