CRI-O 是一个基于开放容器计划(Open Container Initiative (OCI))的 Kubernetes 容器运行时接口(Kubernetes Container Runtime Interface (CRI))
本文的环境为 Linux 操作系统
CRI-O 用 openSUSE 的 OBS 为本地包管理器构建
CRI-O 遵循 Kubernetes 的 3 个次要版本的支持周期
CRI-O 还尝试为以下操作系统打包:
Fedora 31+
openSUSE
CentOS 8
CentOS 8 Stream
CentOS 7
Debian Unstable
Debian Testing
Debian 10
Debian 11
Rasbian 10
xUbuntu 22.04
xUbuntu 21.10
xUbuntu 20.04
xUbuntu 18.04
要安装 CRI-O,请为操作系统选择支持的版本
然后将其导出为变量(供后边的命令使用),如:export VERSION=1.19
发行版还被保存为子项目
例如想使用 1.19.1,可以设置:export VERSION=1.19:1.19.1
sudo zypper install cri-o
sudo dnf module enable cri-o:$VERSION
sudo dnf install cri-o
对于 Fedora,只支持设置次版本,即:VERSION=1.18,不支持设置补丁版本:VERSION=1.18.3
注意:从 1.24.0 开始,cri-o
包不再依赖 containernetworking-plugins
包
删除此依赖项允许用户在不删除文件的情况下就能安装自己的 CNI 插件
如果想要使用以前提供的那些 CNI 插件,还应运行:
sudo dnf install containernetworking-plugins
要安装在以下操作系统上,请将环境变量 $OS
设置为下表中对应的值:
操作系统 | $OS |
---|---|
Centos 8 | CentOS_8 |
Centos 8 Stream | CentOS_8_Stream |
Centos 7 | CentOS_7 |
然后以 root 身份运行:
sudo curl -L -o /etc/yum.repos.d/devel:kubic:libcontainers:stable.repo https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/devel:kubic:libcontainers:stable.repo
sudo curl -L -o /etc/yum.repos.d/devel:kubic:libcontainers:stable:cri-o:$VERSION.repo https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:$VERSION/$OS/devel:kubic:libcontainers:stable:cri-o:$VERSION.repo
sudo yum install cri-o -y
注意:从 1.24.0 开始,cri-o
包不再依赖 containernetworking-plugins
包
删除此依赖项允许用户在不删除文件的情况下就能安装自己的 CNI 插件
如果想要使用以前提供的那些 CNI 插件,还应运行:
yum install containernetworking-plugins
注意:请先安装 curl
与 gnupg
要安装在下边表格中的操作系统上,则请先将环境变量 $OS 设置为下表中对应的值:
操作系统 | $OS |
---|---|
Debian Unstable | Debian_Unstable |
Debian Testing | Debian_Testing |
Debian 10 | Debian_10 |
Raspberry Pi OS | Raspbian_10 |
Ubuntu 22.04 | xUbuntu_22.04 |
Ubuntu 21.10 | xUbuntu_21.10 |
Ubuntu 20.04 | xUbuntu_20.04 |
Ubuntu 18.04 | xUbuntu_18.04 |
如果安装 cri-o-runc
(推荐),则需要安装 libseccomp
>= 2.4.1
注意:这在基于 Debian 10(buster)或更低版本的发行版中不可用
因此需要启用 buster 反向移植:
echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list
apt update
apt install -y -t buster-backports libseccomp2 || apt update -y -t buster-backports libseccomp2
然后以 root 身份运行:
echo "deb [signed-by=/usr/share/keyrings/libcontainers-archive-keyring.gpg] https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/ /" > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
echo "deb [signed-by=/usr/share/keyrings/libcontainers-crio-archive-keyring.gpg] https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$VERSION/$OS/ /" > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$VERSION.list
mkdir -p /usr/share/keyrings
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/Release.key | gpg --dearmor -o /usr/share/keyrings/libcontainers-archive-keyring.gpg
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$VERSION/$OS/Release.key | gpg --dearmor -o /usr/share/keyrings/libcontainers-crio-archive-keyring.gpg
apt-get update
apt-get install cri-o cri-o-runc
注意:我们包含 cri-o-runc
,是因为 Ubuntu 和 Debian 包含它们自己的打包版本的 runc
虽然这个版本应该也可以与 CRI-O 一起使用
但保持 CRI-O 与 runc
的打包版本同步可以确保它们能够一起工作
如果想使用操作系统发行版的 runc
,则需要添加文件:
[crio.runtime.runtimes.runc]
runtime_path = ""
runtime_type = "oci"
runtime_root = "/run/runc"
到 /etc/crio/crio.conf.d/
目录
注意:从 1.24.0 开始,cri-o
包不再依赖 containernetworking-plugins
包
删除此依赖项允许用户在不删除文件的情况下就能安装自己的 CNI 插件
如果想要使用以前提供的那些 CNI 插件,还应运行:
apt-get install containernetworking-plugins
预期会安装最新版本的 runc
,CRI-O 会将其选为默认运行时
需要:Fedora、RHEL 7、CentOS 与相关的软件:
yum install -y \
containers-common \
device-mapper-devel \
git \
glib2-devel \
glibc-devel \
glibc-static \
go \
gpgme-devel \
libassuan-devel \
libgpg-error-devel \
libseccomp-devel \
libselinux-devel \
pkgconfig \
make \
runc
请注意:
pkgconfig
包被 pkgconf-pkg-config
取代btrfs-progs-devel
包来添加 btrfs 支持runc
可能已经过期了,想要获取最新版本的 runc
,可考虑使用:https://build.opensuse.org/project/show/devel:kubic:libcontainers:stable请确保已订阅了下边的仓库:
BaseOS/x86_64
Appstream/x86_64 CodeReady Linux Builder for x86_64
subscription-manager repos --enable=rhel-8-for-x86_64-baseos-rpms
subscription-manager repos --enable=rhel-8-for-x86_64-appstream-rpms
subscription-manager repos --enable=codeready-builder-for-rhel-8-x86_64-rpms
如果没有订阅,请根据下边的指南进行订阅:
https://access.redhat.com/solutions/265523
这需要 1.12 或更改版本的 go
:
yum module -y install go-toolset
yum install -y \
containers-common \
device-mapper-devel \
git \
make \
glib2-devel \
glibc-devel \
glibc-static \
runc \
如何在 RHEL 上安装一个源 rpm:
https://www.itechlounge.net/2012/12/linux-how-to-install-source-rpm-on-rhelcentos/
依赖:gpgme-devel
http://download.eng.bos.redhat.com/brewroot/packages/gpgme/1.10.0/6.el8/x86_64/
依赖:go-md2man:
go get github.com/cpuguy83/go-md2man
以下依赖:
libassuan \
libassuan-devel \
libgpg-error \
libseccomp \
libselinux \
pkgconf-pkg-config \
在 Debian、Raspbian 和 Ubuntu 发行版上
启用 Kubic 项目仓库(用于 containers-common
和 cri-o-runc
软件包)并安装以下软件包:
Debian 到 buster 版本之前 - Raspbian - Ubuntu 到 18.04 版本之前
apt update -qq && \
# For Debian 10(buster) or below: use "apt install -t buster-backports"
apt install -y \
btrfs-tools \
containers-common \
git \
golang-go \
libassuan-dev \
libdevmapper-dev \
libglib2.0-dev \
libc6-dev \
libgpgme11-dev \
libgpg-error-dev \
libseccomp-dev \
libsystemd-dev \
libbtrfs-dev \
libselinux1-dev \
pkg-config \
go-md2man \
cri-o-runc \
libudev-dev \
software-properties-common \
gcc \
make
Debian bullseye 或更高版本 - Ubuntu 20.04 或更高版本
apt-get update -qq && apt-get install -y \
libbtrfs-dev \
containers-common \
git \
golang-go \
libassuan-dev \
libdevmapper-dev \
libglib2.0-dev \
libc6-dev \
libgpgme-dev \
libgpg-error-dev \
libseccomp-dev \
libsystemd-dev \
libselinux1-dev \
pkg-config \
go-md2man \
cri-o-runc \
libudev-dev \
software-properties-common \
gcc \
make
注意:
如果使用比较旧的版本或长期支持版本
请检查 runc
版本是否足够新(运行 runc --version
生成 spec: 1.0.0
)
否则应该自己构建
检查 golang
的版本是否足够新,需要 1.12.x
或更高版本
如果需要,可以在官方下载网站上获得更新的 golang
版本
克隆源代码:
git clone https://github.com/cri-o/cri-o # or your fork
cd cri-o
确保 ORI-O
与 kubernetes
的主版本号匹配
要使用默认构建标签,则用 seccomp 进行安装:
make
sudo make install
如果不构建具有 seccomp 支持的 CRI-O
,可在运行 make
时添加 BUILDTAGS=""
make BUILDTAGS=""
sudo make install
可以用 Ansible 角色来自动执行上述步骤:
sudo su -
mkdir -p ~/.ansible/roles
cd ~/.ansible/roles
git clone https://github.com/alvistack/ansible-role-cri_o.git cri_o
cd ~/.ansible/roles/cri_o
pip3 install --upgrade --ignore-installed --requirement requirements.txt
molecule converge
molecule verify
CRI-O
支持可选的构建标签来编译对各种特性的支持
要为 make
选项添加构建标签,需要设置 BUILDTAGS
变量
make BUILDTAGS='seccomp apparmor'
构建标签 | 特性 | 依赖 |
---|---|---|
seccomp | 系统调用过滤 | libseccomp |
selinux | selinux 进程与挂载标签 | libselinux |
apparmor | apparmor 配置文件支持 |
CRI-O
使用 containers/image 管理镜像,使用以下构建标签
构建标签 | 特性 | 依赖 |
---|---|---|
containers_image_openpgp | 使用 native golang pgp 代替 cgo | |
containers_image_ostree_stub | 禁止将 ostree 用于图像传输 |
CRI-O
还使用 containers/storage 来管理容器存储
构建标签 | 特性 | 依赖 |
---|---|---|
exclude_graphdriver_btrfs | 将 btrfs 排除在存储选项之外 | |
btrfs_noversion | 用于构建 < 3.16.1 的 btrfs 版本 | btrfs |
exclude_graphdriver_devicemapper | 将 devicemapper 排除在存储选项之外 | |
libdm_no_deferred_remove | 不要使用 devicemapper 编译 deferred remove | devicemapper |
exclude_graphdriver_overlay | 将 overlay 排除在存储选项之外 | |
ostree | 用 ostree 构建存储 | ostree |
可以用官方提供的 nix 包及其在这个仓库中的衍生物来构建 CRI-O
的静态链接二进制文件
这些构建是可重现的,并将为 glibc 创建一个剥离 x86_64
/amd64
或 aarch64
/arm64
的 ELF 二进制文件
这些二进制文件也经过集成测试并支持以下特性:
要在本地构建二进制文件,要么安装 nix 包管理器
要么使用 make build-static
目标,它依赖于 nixos/nix 容器镜像
整个构建过程可能会占用大量的 CPU 时间,具体时间取决于使用的硬件
生成的二进制文件应该在 bin/static/crio
要在没有任何现成容器的情况下并通过安装的 nix 包管理器构建二进制文件
只需在此仓库的根目录中运行以下命令:
nix build -f nix
生成的二进制文件应该在 result/bin
要构建二进制的 arm 变体,只需运行:
nix build -f nix/default-arm64.nix
发布包包含所有静态二进制文件、手册页和配置文件,如 00-default.conf
release-bundle 目标可用于在当前仓库中构建新的发布存档:
make release-bundle
…
Created ./bundle/cri-o.amd64.v1.20.0.tar.gz
conmon 是 CRI-O
用于监视容器日志和退出信息的守护程序,每个容器各一个
运行下边的命令下载 conmon
到 $PATH
git clone https://github.com/containers/conmon
cd conmon
make
sudo make install
contrib/cni README 中提供了设置 CNI 网络的描述
要点是需要启用一些基本的网络配置并在系统上安装 CNI 插件
如果是第一次安装,请使用以下命令生成和安装配置文件:
sudo make install.config
编辑 /etc/containers/registries.conf
并验证 registry 选项中是否包含有效值,如:
[registries.search]
registries = ['registry.access.redhat.com', 'registry.fedoraproject.org', 'quay.io', 'docker.io']
[registries.insecure]
registries = []
[registries.block]
registries = []
有关此文件的更多信息,请参阅 registry.conf(5)
用户可以通过指定像 /etc/crio/crio.conf.d/01-log-level.conf
这样的覆盖来修改 log_level
从而更改日志级别
可选项:fatal、panic、error、warn、info (default)、debug、trace
[crio.runtime]
log_level = "info"
CRI-O 默认使用以下能力:
default_capabilities = [
"CHOWN",
"DAC_OVERRIDE",
"FSETID",
"FOWNER",
"SETGID",
"SETUID",
"SETPCAP",
"NET_BIND_SERVICE",
"KILL",
]
并且默认没有设置 sysctls
default_sysctls = [
]
用户可以通过向 /etc/crio/crio.conf.d
添加覆盖来更改任一默认值
运行 make install
会将 CRI-O 下载到目录:
/usr/local/bin/crio
可以在该目录手动运行它,或者也可以设置一个 systemd
单元文件:
sudo make install.systemd
让 systemd
负责运行 CRI-O:
sudo systemctl daemon-reload
sudo systemctl enable crio
sudo systemctl start crio
按照教程快速开始运行简单的 pod 和容器
运行一个完整的集群见说明
用 kubeadm 运行,见 kubeadm 说明
sudo zypper update
sudo zypper update cri-o
sudo dnf update
sudo dnf update cri-o
sudo yum update
sudo yum update cri-o
如果更新到补丁版本(如 VERSION=1.8.3 ),运行:
apt update cri-o cri-o-runc
否则,请确保将环境变量 $OS 设置为下表中与操作系统对应的字段:
操作系统 | $OS |
---|---|
Debian Unstable | Debian_Unstable |
Debian Testing | Debian_Testing |
Ubuntu 20.04 | xUbuntu_20.04 |
Ubuntu 19.10 | xUbuntu_19.10 |
Ubuntu 19.04 | xUbuntu_19.04 |
Ubuntu 18.04 | xUbuntu_18.04 |
要升级,请为操作系统选择支持的版本,并将其导出为变量:export VERSION=1.18
然后以 root 身份运行以下命令:
sudo rm /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$VERSION.list
sudo echo "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$VERSION/$OS/ /" > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$VERSION.list
sudo curl -L https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:$VERSION/$OS/Release.key | apt-key add -
sudo apt update
sudo apt install cri-o cri-o-runc