-
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
wip: fix mounting /var/lib/contaired to tmpfs in VM ISO #7834
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh 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 |
Can you comment with the output of:
after making this change? |
/ok-to-test |
kvm2 Driver |
kvm2 Driver |
first attemp failed error for logs:
|
This commit 270756e was much easier to review than this one... This one does two unrelated things ( Can't we just do a simple fix for containerd, like the title says ? mkdir -p /mnt/$PARTNAME/var/lib/docker
mkdir -p /var/lib/docker
mount --bind /mnt/$PARTNAME/var/lib/docker /var/lib/docker
mkdir -p /mnt/$PARTNAME/var/lib/containers
mkdir -p /var/lib/containers
mount --bind /mnt/$PARTNAME/var/lib/containers /var/lib/containers
+ mkdir -p /mnt/$PARTNAME/var/lib/containerd
+ mkdir -p /var/lib/containerd
+ mount --bind /mnt/$PARTNAME/var/lib/containerd /var/lib/containerd
+ |
while debugging preload on containerd, it said there is no diskpace left.
@tstromberg found out that /var/lib/contained is living on tmpfs
Before this PR: