-
Notifications
You must be signed in to change notification settings - Fork 28
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
podman pull, inside qm, fails on OStree image: no space left on device #584
Conversation
@Yarboa @dougsland Please review this fix. |
The commit itself could get a better title/body description. |
Fixed. |
I meant the commit message, not the PR. You could use a similar text though. Also, please try to avoid creating a new commit when you rebase/merge from main, so that we can keep a clean git history. |
@nsednev when you receive requests from reviewers, you should apply them over the commit that caused the issue. Try following these steps:
You should see only your commits, keep the first pick, the other commits switch to squash: Save and exit editing the file. Next you will be prompted with the commit message and body selection. Remove the additional text from the commits, and leave a meaningful header and body, and the SoB line.
Next time you get a review and want to change something in the last commit you can just do Let me know if you have any problems during the process. |
a94b15e
to
185a1c0
Compare
Well, almost... You've rebased over the last commit from main. It's fine, happens. You'll probably need to do a soft reset of your commit, rebase from main, and commit your changes again. I can be of assist if you need. Ping me if so. |
be8f180
to
3bbe302
Compare
3bbe302
to
f0499d7
Compare
Signed-off-by: nsednev <[email protected]>
f0499d7
to
b417ce1
Compare
I will let the others review but to my eyes looks good, thanks for the efforts to make it great. |
@aesteve-rh @Yarboa feel free to merge. |
lgtm, thanks! |
Fix: ostree images, pulling container larger than 0.9M
Container with size > 1G is failing and resulting no disk space on podman pull
resolve #574
The fix creates a workaround for OStree images to properly use prepare.sh.
Rebased from #575
Adds OStree image specific checkup to the prepare.sh and sets image_copy_tmp_dir="/var/tmp.dir", so the prepare_images section could be used also for OStree images.