-
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
tar: invalid option -- 'I'
during minikube start
#6983
Comments
In the most recent ISO, the "tar" program was replaced with GNU tar (that does have such an option) See d0b0dce Most likely, the "lz4" program was also missing from the ISO anyway - so wouldn't have helped...
The error was hidden better in fea9fd3 But can be made to more silently fallback |
Same as #6938 It should still have worked ("falling back to caching images"), but the output was a bit ugly... |
Not really "gracefully", more like silently ? Theoretically you could copy the Latest output looks like #6978 |
Resolved by minikube v1.8.2. |
The exact command to reproduce the issue:
minikube start --vm-driver virtualbox --extra-config=apiserver.service-node-port-range=1-50000 --disk-size 40g --memory 12288
The full output of the command that failed:
The output of the
minikube logs
command:The operating system version: macOS 10.15.3 (19D76)
It looks like
tar
is being called with an argument that isn't supported by BusyBox:minikube/pkg/minikube/cruntime/docker.go
Lines 296 to 298 in 7d28b2a
According to BusyBox's documentation, its implementation of
tar
doesn't appear to support the LZ4 archive format.The text was updated successfully, but these errors were encountered: