summaryrefslogtreecommitdiff
path: root/pkg/specgenutil
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2021-11-15 15:01:55 +0100
committerGiuseppe Scrivano <gscrivan@redhat.com>2021-11-18 17:01:06 +0100
commite83d366651e9c68e2802924d7c7d3ac69ca3eb14 (patch)
tree3e9cd076be9acab193e0b6d6d8114dc2facb22db /pkg/specgenutil
parent9b964945d661d4f97b4a97f2f67d33f9dcd11e50 (diff)
downloadpodman-e83d366651e9c68e2802924d7c7d3ac69ca3eb14.tar.gz
podman-e83d366651e9c68e2802924d7c7d3ac69ca3eb14.tar.bz2
podman-e83d366651e9c68e2802924d7c7d3ac69ca3eb14.zip
volumes: add new option idmap
pass down the "idmap" mount option to the OCI runtime. Needs: https://github.com/containers/crun/pull/780 Closes: https://github.com/containers/podman/issues/12154 [NO NEW TESTS NEEDED] there is no crun version yet that support the new feature. Test case (must run as root): podman run --rm -v foo:/foo alpine touch /foo/bar podman run --uidmap 0:1:1000 --rm -v foo:/foo:idmap alpine ls -l /foo total 0 -rw-r--r-- 1 root root 0 Nov 15 14:01 bar Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/specgenutil')
-rw-r--r--pkg/specgenutil/volumes.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/specgenutil/volumes.go b/pkg/specgenutil/volumes.go
index 184bfadf8..8ff770f9c 100644
--- a/pkg/specgenutil/volumes.go
+++ b/pkg/specgenutil/volumes.go
@@ -355,6 +355,8 @@ func getBindMount(args []string) (spec.Mount, error) {
newMount.Options = append(newMount.Options, "U")
}
setOwnership = true
+ case "idmap":
+ newMount.Options = append(newMount.Options, "idmap")
case "consistency":
// Often used on MACs and mistakenly on Linux platforms.
// Since Docker ignores this option so shall we.