* Add a patch to fix the new aarch64 build support, which has not yet been merged upstream (https://github.com/docker/containerd/pull/195): + fix-aarch64-epoll.patch * Rebase the socket activation patchset which has yet to be merged (https://github.com/docker/containerd/pull/178): * socket-activation-01-vendor.patch * socket-activation-02-daemon.patch * socket-activation-03-ctr.patch * Update to containerd 0.2.0. Changelog: + Add Limit to PidsStats + Add timeout flag for container start times. + Add timeout option for GRPC connection. + Add no_pivot_root support. + Add runtimeArgs to pass to shim * Move epoll syscall to a separate package so we can build on aarch64. * Fix ctr termios restoration isssues. * Several bug fixes. - Remove dependencies on larger packages. OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/containerd?expand=0&rev=9
22 lines
616 B
Desktop File
22 lines
616 B
Desktop File
[Unit]
|
|
Description=Containerd Standalone OCI Container Daemon
|
|
Documentation=https://containerd.tools/
|
|
After=network.target containerd.socket
|
|
Requires=containerd.socket
|
|
|
|
[Service]
|
|
EnvironmentFile=/etc/sysconfig/containerd
|
|
ExecStart=/usr/sbin/containerd --listen fd:// $CONTAINERD_OPTS
|
|
LimitNOFILE=1048576
|
|
LimitNPROC=1048576
|
|
LimitCORE=infinity
|
|
# We don't want to trash the root mount namespace.
|
|
MountFlags=slave
|
|
# While containerd doesn't directly modify cgroups, we have to make sure that
|
|
# systemd doesn't suddenly decide to mess around with runC's cgroup setup.
|
|
Delegate=true
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|