buildkit/vendor/github.com/AkihiroSuda/containerd-fuse-overlayfs
Akihiro Suda b07668418d
update RootlessKit, fuse-overlayfs, and containerd-fuse-overlayfs
Changes:
- https://github.com/rootless-containers/rootlesskit/compare/v0.9.5...v0.11.0
- https://github.com/containers/fuse-overlayfs/compare/v1.1.2...v1.2.0
- https://github.com/AkihiroSuda/containerd-fuse-overlayfs/compare/v0.10.0...v1.0.0

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2020-11-05 17:22:56 +09:00
..
.dockerignore rootless: support fuse-overlayfs 2020-03-03 11:30:29 +09:00
.gitignore rootless: support fuse-overlayfs 2020-03-03 11:30:29 +09:00
Dockerfile update RootlessKit, fuse-overlayfs, and containerd-fuse-overlayfs 2020-11-05 17:22:56 +09:00
LICENSE rootless: support fuse-overlayfs 2020-03-03 11:30:29 +09:00
Makefile rootless: support fuse-overlayfs 2020-03-03 11:30:29 +09:00
README.md update RootlessKit, fuse-overlayfs, and containerd-fuse-overlayfs 2020-11-05 17:22:56 +09:00
check.go update containerd to v1.4.0, runc to v1.0.0-rc92 2020-08-18 22:19:53 +09:00
fuseoverlayfs.go update RootlessKit, fuse-overlayfs, and containerd-fuse-overlayfs 2020-11-05 17:22:56 +09:00
go.mod update containerd to v1.4.0, runc to v1.0.0-rc92 2020-08-18 22:19:53 +09:00
go.sum update containerd to v1.4.0, runc to v1.0.0-rc92 2020-08-18 22:19:53 +09:00

README.md

fuse-overlayfs snapshotter plugin for containerd

Unlike overlayfs, fuse-overlayfs can be used as a non-root user without patching the kernel.

Requirements

  • kernel >= 4.18
  • containerd >= 1.4
  • fuse-overlayfs >= 0.7.0

Setup

Two installation options are supported:

  1. Embed fuse-overlayfs plugin into the containerd binary
  2. Execute fuse-overlayfs plugin as a separate binary

Choose 1 if you don't mind recompiling containerd, otherwise choose 2.

Option 1: Embed fuse-overlayfs plugin into the containerd binary

Create builtins_fuseoverlayfs_linux.go under $GOPATH/src/github.com/containerd/containerd/cmd/containerd with the following content, and recompile the containerd binary:

/*
   Copyright The containerd Authors.
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
       http://www.apache.org/licenses/LICENSE-2.0
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

package main

// NOTE: the package name was "github.com/AkihiroSuda/containerd-fuse-overlayfs" before v1.0.0
import _ "github.com/AkihiroSuda/containerd-fuse-overlayfs/plugin"

No extra configuration is needed.

See https://github.com/containerd/containerd/blob/master/docs/rootless.md for how to run containerd as a non-root user.

Option 2: Execute fuse-overlayfs plugin as a separate binary

  • Install containerd-fuse-overlayfs-grpc binary. The binary will be installed under $DESTDIR/bin.
$ make && DESTDIR=$HOME make install
  • Create the following configuration in ~/.config/containerd/config.toml:
version = 2
# substitute "/home/suda" with your own $HOME
root = "/home/suda/.local/share/containerd"
# substitute "/run/user/1001" with your own $XDG_RUNTIME_DIR
state = "/run/user/1001/containerd"

[grpc]
  address = "/run/user/1001/containerd/containerd.sock"

[proxy_plugins]
  [proxy_plugins."fuse-overlayfs"]
    type = "snapshot"
    address = "/run/user/1001/containerd/fuse-overlayfs.sock"
  • Start RootlessKit with sleep infinity (or any kind of "pause" command):
$ rootlesskit \
  --net=slirp4netns --disable-host-loopback \
  --copy-up=/etc --copy-up=/run \
  --state-dir=$XDG_RUNTIME_DIR/rootlesskit-containerd \
  sh -c "rm -rf /run/containerd ; sleep infinity"

(Note: rm -rf /run/containerd is a workaround for containerd/containerd#2767)

  • Enter the RootlessKit namespaces and run containerd-fuse-overlayfs-grpc:
$ nsenter -U --preserve-credentials -m -n -t $(cat $XDG_RUNTIME_DIR/rootlesskit-containerd/child_pid) \
  containerd-fuse-overlayfs-grpc $XDG_RUNTIME_DIR/containerd/fuse-overlayfs.sock $HOME/.local/share/containerd-fuse-overlayfs
  • Enter the same namespaces and run containerd:
$ nsenter -U --preserve-credentials -m -n -t $(cat $XDG_RUNTIME_DIR/rootlesskit-containerd/child_pid) \
  containerd -c $HOME/.config/containerd/config.toml

Usage

$ export CONTAINERD_SNAPSHOTTER=fuse-overlayfs
$ ctr pull ...
$ ctr run ...

How to test

To run the test as a non-root user, RootlessKit needs to be installed.

$ go test -exec rootlesskit -test.v -test.root