The intention of this project is to encapsulate CRI-O's packaging efforts into a dedicated repository, following official Kubernetes guidelines by using the openSUSE Build Service (OBS).
The following resources are great to understand the motivation behind the latest
deb and rpm packaging efforts within the CRI-O and Kubernetes community:
-
CRI-O is moving towards pkgs.k8s.io:
https://k8s.io/blog/2023/10/10/cri-o-community-package-infrastructure
-
Kubernetes Legacy Package Repositories Will Be Frozen On September 13, 2023:
https://kubernetes.io/blog/2023/08/31/legacy-package-repository-deprecation/
-
pkgs.k8s.io: Introducing Kubernetes Community-Owned Package Repositories:
https://kubernetes.io/blog/2023/08/15/pkgs-k8s-io-introduction/
-
Installing Kubernetes via
kubeadm:
CRI-O uses the same basic project layout in OBS as Kubernetes, but lives in a
dedicated umbrella subproject called isv:kubernetes:addons:cri-o.
This project contains a bunch of other subprojects:
isv:kubernetes:addons:cri-o:stable: Stable Packages (Umbrella)isv:kubernetes:addons:cri-o:stable:v1.31:v1.31.ztags (Stable)isv:kubernetes:addons:cri-o:stable:v1.31:build:v1.31.ztags (Builder)
isv:kubernetes:addons:cri-o:stable:v1.30:v1.30.ztags (Stable)isv:kubernetes:addons:cri-o:stable:v1.30:build:v1.30.ztags (Builder)
isv:kubernetes:addons:cri-o:stable:v1.29:v1.29.ztags (Stable)isv:kubernetes:addons:cri-o:stable:v1.29:build:v1.29.ztags (Builder)
isv:kubernetes:addons:cri-o:stable:v1.28:v1.28.ztags (Stable)isv:kubernetes:addons:cri-o:stable:v1.28:build:v1.28.ztags (Builder)
isv:kubernetes:addons:cri-o:prerelease: Prerelease Packages (Umbrella)isv:kubernetes:addons:cri-o:prerelease:main:mainbranch (Prerelease)isv:kubernetes:addons:cri-o:prerelease:main:build:mainbranch (Builder)
isv:kubernetes:addons:cri-o:prerelease:v1.31:release-1.31branch (Prerelease)isv:kubernetes:addons:cri-o:prerelease:v1.31:build:release-1.31branch (Builder)
isv:kubernetes:addons:cri-o:prerelease:v1.30:release-1.30branch (Prerelease)isv:kubernetes:addons:cri-o:prerelease:v1.30:build:release-1.30branch (Builder)
isv:kubernetes:addons:cri-o:prerelease:v1.29:release-1.29branch (Prerelease)isv:kubernetes:addons:cri-o:prerelease:v1.29:build:release-1.29branch (Builder)
isv:kubernetes:addons:cri-o:prerelease:v1.28:release-1.28branch (Prerelease)isv:kubernetes:addons:cri-o:prerelease:v1.28:build:release-1.28branch (Builder)
The prerelease projects are mainly used for release-x.y branches as well as
the main branch of CRI-O. The stable projects are used for tagged releases.
The build projects are the builders for each project to be published, while
the main repositories for them are on top. For example, the builder project for
main is:
isv:kubernetes:addons:cri-o:prerelease:main:build
But end-users will consume:
isv:kubernetes:addons:cri-o:prerelease:main
All packages are based on the static binary bundles provided by the CRI-O CI.
KUBERNETES_VERSION=v1.30
PROJECT_PATH=prerelease:/maincat <<EOF | tee /etc/yum.repos.d/kubernetes.repo
[kubernetes]
name=Kubernetes
baseurl=https://pkgs.k8s.io/core:/stable:/$KUBERNETES_VERSION/rpm/
enabled=1
gpgcheck=1
gpgkey=https://pkgs.k8s.io/core:/stable:/$KUBERNETES_VERSION/rpm/repodata/repomd.xml.key
EOFcat <<EOF | tee /etc/yum.repos.d/cri-o.repo
[cri-o]
name=CRI-O
baseurl=https://pkgs.k8s.io/addons:/cri-o:/$PROJECT_PATH/rpm/
enabled=1
gpgcheck=1
gpgkey=https://pkgs.k8s.io/addons:/cri-o:/$PROJECT_PATH/rpm/repodata/repomd.xml.key
EOFdnf install -y container-selinuxdnf install -y cri-o kubelet kubeadm kubectlsystemctl start crio.serviceswapoff -a
modprobe br_netfilter
sysctl -w net.ipv4.ip_forward=1
kubeadm initapt-get update
apt-get install -y software-properties-common curlKUBERNETES_VERSION=v1.30
PROJECT_PATH=prerelease:/maincurl -fsSL https://pkgs.k8s.io/core:/stable:/$KUBERNETES_VERSION/deb/Release.key |
gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg
echo "deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/$KUBERNETES_VERSION/deb/ /" |
tee /etc/apt/sources.list.d/kubernetes.listcurl -fsSL https://pkgs.k8s.io/addons:/cri-o:/$PROJECT_PATH/deb/Release.key |
gpg --dearmor -o /etc/apt/keyrings/cri-o-apt-keyring.gpg
echo "deb [signed-by=/etc/apt/keyrings/cri-o-apt-keyring.gpg] https://pkgs.k8s.io/addons:/cri-o:/$PROJECT_PATH/deb/ /" |
tee /etc/apt/sources.list.d/cri-o.listapt-get update
apt-get install -y cri-o kubelet kubeadm kubectlsystemctl start crio.serviceswapoff -a
modprobe br_netfilter
sysctl -w net.ipv4.ip_forward=1
kubeadm initThe obs GitHub action workflow
can be used to manually trigger release for a CRI-O tag, a release-x.y branch
or main. There is a daily cron scheduled for release branches,
but it is also possible to trigger the package creation at a certain point in time. The
obs pipeline will:
- Build a static binary bundle which contains all necessary files.
- Push the bundle and spec file into the
corresponding
buildproject. - Wait for the OBS builders to finish.
- Run package installation and usage tests for Kubernetes and available architectures for various Distributions.
- Publish the packages into the top level project.
We always recommend to use deb and rpm packages over the static binary
bundle, but for some reason packages may not be a good fit. Every run in the
obs GitHub workflow will publish a static binary bundle on our Google Cloud
Storage Bucket, which contains all necessary binaries and
configurations.
This means that the latest available CRI-O main commit can be installed via
our convenience script:
> curl https://raw.githubusercontent.com/cri-o/packaging/main/get | bashThe script automatically verifies the uploaded sigstore signatures as well, if
the local system has cosign available in
its $PATH. The same applies to the SPDX based bill of
materials (SBOM), which gets automatically verified if the
bom tool is in $PATH.
Besides amd64, we also support the arm64, ppc64le and s390x bit
architectures. This can be selected via the script, too:
curl https://raw.githubusercontent.com/cri-o/packaging/main/get | bash -s -- -a arm64It is also possible to select a specific git SHA or tag by:
curl https://raw.githubusercontent.com/cri-o/packaging/main/get | bash -s -- -t v1.29.0The above script resolves to the download URL of the static binary bundle tarball matching the format:
https://storage.googleapis.com/cri-o/artifacts/cri-o.$ARCH.$REV.tar.gz
Where $ARCH can be amd64, arm64, ppc64le or s390x and $REV
can be any git SHA or tag.
We also provide a Software Bill of Materials (SBOM) in the SPDX
format for each bundle. The SBOM is available at the same URL
like the bundle itself, but suffixed with .spdx:
https://storage.googleapis.com/cri-o/artifacts/cri-o.$ARCH.$REV.tar.gz.spdx