This document provides the steps to install cri-containerd
and its dependencies with the release tarball, and bring up a Kubernetes cluster using kubeadm.
These steps have been verified on Ubuntu 16.04. For other OS distributions, the steps may differ. Please feel free to file issues or PRs if you encounter any problems on other OS distributions.
Note: You need to run the following steps on each node you are planning to use in your Kubernetes cluster.
For each release, we'll publish a release tarball. The release tarball contains all required binaries and files for cri-containerd
.
As shown below, the release tarball contains:
cri-containerd
: cri-containerd binary.containerd
,containerd-shim
,containerd-stress
,containerd-release
,ctr
: binaries for containerd.runc
: runc binary.crictl
: command line tools for CRI container runtime.containerd.service
,cri-containerd.service
: Systemd units for cri-containerd and containerd./opt/cri-containerd/cluster/
: scripts forkube-up.sh
.
$ tar -tf cri-containerd-1.0.0-beta.0.linux-amd64.tar.gz
./
./opt/
./opt/cri-containerd/
./opt/cri-containerd/cluster/
./opt/cri-containerd/cluster/gce/
./opt/cri-containerd/cluster/gce/cloud-init/
./opt/cri-containerd/cluster/gce/cloud-init/node.yaml
./opt/cri-containerd/cluster/gce/cloud-init/master.yaml
./opt/cri-containerd/cluster/gce/configure.sh
./opt/cri-containerd/cluster/health-monitor.sh
./opt/cri-containerd/cluster/env
./usr/
./usr/local/
./usr/local/sbin/
./usr/local/sbin/runc
./usr/local/bin/
./usr/local/bin/crictl
./usr/local/bin/containerd
./usr/local/bin/containerd-stress
./usr/local/bin/critest
./usr/local/bin/containerd-release
./usr/local/bin/containerd-shim
./usr/local/bin/ctr
./usr/local/bin/cri-containerd
./etc/
./etc/systemd/
./etc/systemd/system/
./etc/systemd/system/containerd.service
./etc/systemd/system/cri-containerd.service
./etc/crictl.yaml
Information about the binaries in the release tarball:
Binary Name | Support | OS | Architecture |
---|---|---|---|
cri-containerd | seccomp, apparmor | linux | amd64 |
runc | seccomp, apparmor | linux | amd64 |
containerd/containerd-shim | overlay, btrfs | linux | amd64 |
If you have other requirements for the binaries, e.g. selinux support, another architecture support etc., you need to build the binaries yourself following the instructions.
The release tarball could be downloaded from either of the following sources:
- Release on github (see here);
- Release GCS bucket https://storage.googleapis.com/cri-containerd-release/.
Install required libraries for seccomp and libapparmor.
sudo apt-get update
sudo apt-get install libseccomp2
sudo apt-get install libapparmor
Note that:
- If you are using Ubuntu <=Trusty or Debian <=jessie, a backported version of
libseccomp2
is needed. (See the trusty-backports and jessie-backports). - If your OS distro doesn't support AppArmor, please skip installing
libapparmor
, and AppArmor will be disabled.
Download release tarball for the cri-containerd version you want to install from sources listed above.
wget https://storage.googleapis.com/cri-containerd-release/cri-containerd-${VERSION}.linux-amd64.tar.gz
Validate checksum of the release tarball (note that checksum is added since v1.0.0-beta.0):
sha256sum cri-containerd-${VERSION}.linux-amd64.tar.gz
curl https://storage.googleapis.com/cri-containerd-release/cri-containerd-${VERSION}.linux-amd64.tar.gz.sha256
# Compare to make sure the 2 checksums are the same.
If you are using systemd, just simply unpack the tarball to the root directory:
sudo tar -C / -xzf cri-containerd-${VERSION}.linux-amd64.tar.gz
sudo mkdir -p /opt/cni/bin/
sudo mkdir -p /etc/cni/net.d
sudo systemctl start containerd
sudo systemctl start cri-containerd
If you are not using systemd, please unpack all binaries into a directory in your PATH
, and start cri-containerd
and containerd
as monitored long runnig services with the service manager you are using e.g. supervisord
, upstart
etc.
Follow the instructions to install kubeadm, kubelet and kubectl.
Create the systemd drop-in file /etc/systemd/system/kubelet.service.d/0-cri-containerd.conf
:
[Service]
Environment="KUBELET_EXTRA_ARGS=--container-runtime=remote --runtime-request-timeout=15m --container-runtime-endpoint=/var/run/cri-containerd.sock"
And reload systemd configuration:
systemctl daemon-reload
Now you should have properly installed all required binaries and dependencies on each of your node.
The next step is to use kubeadm to bring up the Kubernetes cluster. It is the same with the ansible installer. Please follow the steps 2-4 here.