-
Notifications
You must be signed in to change notification settings - Fork 19
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
tmpfs unsupported mount options tmpcopyup, rprivate #30
Labels
help wanted
Extra attention is needed
Comments
https://github.com/opencontainers/runc/releases/tag/v1.0.0-rc3
|
r10r
changed the title
unsupported mount option tmpcopyup
tmpfs unsupported mount option tmpcopyup, rprivate
Feb 11, 2021
Can be easily reproduced with a plain lxc container created with lxc cmdline tools: lxc-create -n test-mount --template download -- --dist ubuntu --release xenial --arch amd64
#
cat >> /usr/local/var/lib/lxc/test-mount/config <<EOF
lxc.mount.entry = tmpfs foobar tmpfs rw,rprivate,noexec,nosuid,nodev,tmpcopyup,create=dir
lxc.log.file = /dev/stderr
lxc.log.level = DEBUG
EOF
#
lxc-start -n test-mount
|
r10r
changed the title
tmpfs unsupported mount option tmpcopyup, rprivate
tmpfs unsupported mount options tmpcopyup, rprivate
Feb 11, 2021
This is related to #31 |
r10r
added a commit
to drachenfels-de/lxc
that referenced
this issue
Jun 23, 2021
Do not append the propgation options to the mount data. Filesystems fail to mount if the mount data contains propagation options. See also lxc/lxcri#30 Signed-off-by: Ruben Jenster <[email protected]>
r10r
added a commit
to drachenfels-de/lxc
that referenced
this issue
Jun 30, 2021
Do not append the propgation options to the mount data. Filesystems fail to mount if the mount data contains propagation options. See also lxc/lxcri#30 Signed-off-by: Ruben Jenster <[email protected]>
r10r
added a commit
to drachenfels-de/lxc
that referenced
this issue
Dec 12, 2023
Do not append the propgation options to the mount data. Filesystems fail to mount if the mount data contains propagation options. See also lxc/lxcri#30 Signed-off-by: Ruben Jenster <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
crio-o
seems adds the mount optionsrprivate
andtmpcopyup
to tmpfs container mounts. See drachenfels-de/lxcri-defork#13As far as I can see these options are added to all tmpfs mounts but
/dev
This includes:The kernel log (
dmesg
) then shows the following errors:The mount options
rprivate
andtmpcopyup
are not support fortmpfs
. Seeman 5 tmpfs
Platform
The text was updated successfully, but these errors were encountered: