containerd snapshotter for atoms
Install containerd remote snapshotter plugin (atomfs-snapshotter-grpc)
Add the following to /etc/containerd/config.toml:
[proxy_plugins.atomfs]
# tells containerd that the atomfs plugin is a snapshotter and implements the snapshotter API
type = "snapshot"
# tells containerd where to connect to the atomfs snapshotter
address = "/run/atomfs-snapshotter-grpc/atomfs-snapshotter-grpc.sock"
[proxy_plugins.atomfs.exports]
# defines the root data directory for the atomfs snapshotter. Kubernetes uses
# this to calculate disk utilization, enforce storage limits, and trigger
# garbage collection.
root = "/var/lib/atomfs-snapshotter-grpc"
[plugins."io.containerd.grpc.v1.cri".containerd]
# tells containerd to use atomfs by default.
snapshotter = "atomfs"