-
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 --download-only option to start command #3737
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: afbjorklund The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
I feel like the more natural place for this would be "minikube cache --startup-images", but I also recognize that this would be really difficult to implement with the way the code is currently organized. |
cmd/minikube/cmd/start.go
Outdated
if err := LoadCachedImagesInConfigFile(false); err != nil { | ||
exit.WithError("Failed to cache images", err) | ||
} | ||
console.OutStyle("check", "Download complete and in download only mode") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think just "Download complete!" would suffice as a console message.
I thought |
Just checking if you plan to address the comments so that this will be merged before 1.0? |
Working on it, think that it needs to be rewritten to match the caching of images better. |
Need to split out the caching functions, from the loading/copying. Also need to make the lists accessible from outside the functions.
Make it possible to download files without loading or installing, and without starting the host... Download: ISO, binaries, images.
Please merge once rebased. Thanks! |
Make it possible to download files without loading or installing,
and without starting the host... Download: ISO, binaries, images.
Closes #3736