README ¶
Purpose
This repository contains the definitions for the Container Runtime Interface (CRI). CRI is a plugin interface which enables kubelet to use a wide variety of container runtimes, without the need to recompile. CRI consists of a protocol buffers and gRPC API. Read more about CRI API at kubernetes docs.
The repository kubernetes/cri-api is a mirror of https://github.com/kubernetes/kubernetes/tree/master/staging/src/k8s.io/cri-api. Please do not file issues or submit PRs against the kubernetes/cri-api repository as it is readonly, all development is done in kubernetes/kubernetes.
The CRI API is defined in kubernetes/kubernetes
repository and is only intended to be used for kubelet to container runtime
interactions, or for node-level troubleshooting using a tool such as crictl
.
It is not a common purpose container runtime API for general use, and is intended
to be Kubernetes-centric. We try to avoid it, but there may be logic within a container
runtime that optimizes for the order or specific parameters of call(s) that the kubelet
makes.
Version skew policy
On a single Node there may be installed multiple components implementing different versions of CRI API.
For example, on a single node there might be:
- Kubelet may call into Container Runtime (e.g. containerd) and Image Service Proxy (e.g. stargz-snapshotter). Container Runtime may be versioned with the OS Image, Kubelet is installed by system administrator and Image Service proxy is versioned by the third party vendor.
- Image Service Proxy calls into Container Runtime.
- CRI tools (e.g. crictl) may be installed by end user to troubleshoot, same as a third party daemonsets. All of them are used to call into the Container Runtime to collect container information.
So on a single node it may happen that Container Runtime is serving a newer version'd kubelet and older versioned crictl. This is a supported scenario within the version skew policy.
Version Skew Policy for CRI API
CRI API has two versions:
- Major semantic version (known versions are
v1alpha2
(removed in 1.26),v1
). - Kubernetes version (for example:
@1.23
). Note, thecri-api
Golang library is versioned as0.23
as it doesn't guarantee Go types backward compatibility.
Major semantic version (e.g. v1
) is used to introduce breaking changes
and major new features that are incompatible with the current API.
Kubernetes version is used to indicate a specific feature set implemented on top of the major semantic version. All changes made without the change of a major semantic version API must be backward and forward compatible.
- Kubelet must work with the older Container Runtime if it implements
the same semantic version of CRI API (e.g.
v1
) of up to three Kubernetes minor versions back. New features implemented in CRI API must be gracefully degraded. For example, Kubelet of version 1.26 must work with Container Runtime implementingk8s.io/cri-api@v0.23.0
+. - Kubelet must work with Container Runtime if it implements
the same semantic version of CRI API (e.g.
v1
) of up to three minor versions up. New features implemented in CRI API must not change behavior of old method calls and response values. For example, Kubelet of version 1.22 must work with Container Runtime implementingk8s.io/cri-api@v0.25.5
.
Versioning
This library contains go classes generated from the CRI API protocol buffers and gRPC API.
The library versioned as 0.XX
as Kubernetes doesn't provide any guarantees
on backward compatibility of Go wrappers between versions. However CRI API itself
(protocol buffers and gRPC API) is marked as stable v1
version and it is
backward compatible between versions.
Versions like v0.<minor>.<patch>
(e.g. v0.25.5
) are considered stable.
It is discouraged to introduce CRI API changes in patch releases and recommended
to use versions like v0.<minor>.0
.
All alpha and beta versions (e.g. k8s.io/cri-api@v0.26.0-beta.0
) should be
backward and forward compatible.
Feature development
Some features development requires changes in CRI API and corresponding changes in Container Runtime. Coordinating between Kubernetes branches and release versions and Container Runtime versions is not always trivial.
The recommended feature development flow is following:
- Review proposed CRI API changes during the KEP review stage. Some field names and types may not be spelled out exactly at this stage.
- Locally implement a prototype that implement changes in both - Kubernetes and Container Runtime.
- Submit a Pull Request for Kubernetes implementing CRI API changes alongside the feature code. Feature must be developed to degrade gracefully when used with older Container Runtime according to the Version Skew policy.
- Once PR is merged, wait for the next Kubernetes release tag being produced.
Find the corresponding CRI API tag (e.g.
k8s.io/cri-api@v0.26.0-beta.0
). - This tag can be used to implement the feature in Container Runtime. It is recommended
to switch to the stable tag like (
k8s.io/cri-api@v0.26.0
) once available.
Change history
Here is the change history of the Container Runtime Interface protocol:
v1.20
git diff v1.19.0 v1.20.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
- CRI v1 introduced
v1.21
git diff v1.20.0 v1.21.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
No changes
v1.22
git diff v1.21.0 v1.22.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
PodSandboxConfig
haswindows
field of typeWindowsPodSandboxConfig
- New type
WindowsPodSandboxConfig
introduced - New type
WindowsSandboxSecurityContext
introduced - The type
WindowsContainerSecurityContext
has a newhost_process
boolean field
-
The type
LinuxContainerResources
has a new fieldunified
which is a map of strings -
- The type
LinuxContainerResources
has a newmemory_swap_limit_in_bytes
int64 field
- The type
v1.23
git diff v1.22.0 v1.23.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
CRI: add fields for pod level stats to satisfy the /stats/summary API
- New functions
PodSandboxStats
,ListPodSandboxStats
with the corresponding types of request and response objects are introduced
- New functions
-
pass sandbox resource requirements over CRI
- New fields on
LinuxPodSandboxConfig
:overhead
andresources
of typeLinuxContainerResources
.
- New fields on
-
prevents garbage collection from removing pinned images
- The type
Image
has a new boolean fieldpinned
- The type
v1.24
git diff v1.23.0 v1.24.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
Update CRI-API Capabilities to include a field that allows us to set ambient capabilities
- The type
Capability
has a new string fieldadd_ambient_capabilities
- The type
-
CRI-API - Add rootfs size to WindowsContainerResources
- The type
WindowsContainerResources
has a new int64 fieldrootfs_size_in_bytes
- The type
v1.25
git diff v1.24.0 v1.25.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
kubelet: add CRI definitions for user namespaces
- The new type
UserNamespace
introduced to represent user namespaces id mapping - The type
NamespaceOption
has a new fielduserns_options
of typeUserNamespace
- The new type
-
- The new method
CheckpointContainer
introduced with the corresponding request and response types
- The new method
-
Update CRI API to support Evented PLEG
- The new streaming method
GetContainerEvents
is introduced with the corresponding request and response types
- The new streaming method
-
CRI changes to support in-place pod resize
- The new type
ContainerResources
is introduced - The type
ContainerStatus
has a new fieldresources
of typeContainerResources
- The semantic of
UpdateContainerResources
updated. The method must be implemented as synchronous and return error on failure
- The new type
v1.26
git diff v1.25.0 v1.26.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
CRI: Add Windows Podsandbox Stats
- Added fields to the type
WindowsPodSandboxStats
expressing stats required to be collected from windows pods.
- Added fields to the type
-
- New type
WindowsNamespaceOption
introduced - The type
WindowsSandboxSecurityContext
has a new fieldnamespace_options
of typeWindowsNamespaceOption
- New type
-
- Clarified the expected behavior of
SupplementalGroups
field ofPodSecurityContext
- Clarified the expected behavior of
-
- The type
ContainerEventResponse
updated: the fieldpod_sandbox_metadata
removed and fieldspod_sandbox_status
andcontainers_statuses
added. - The type
PodSandboxStatusResponse
has a new fieldscontainers_statuses
andtimestamp
- The type
v1.27
git diff v1.26.0 v1.27.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
CRI: Add CDI device info for containers
- New type
CDIDevice
was introduced and added to container config
- New type
-
- Added new fields to the type
Mount
expressing runtime UID/GID mappings for the mount.
- Added new fields to the type
v1.28
git diff v1.27.0 v1.28.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
cri-api: fix comment lines about PROPAGATION_PRIVATE
- Fixed comment lines about PROPAGATION_PRIVATE
-
Add user specified image to CRI ContainerConfig
- Added the
user_specified_image
field to typeImageSpec
- Added the
-
kubelet: get cgroup driver config from CRI
- Added rpc for querying runtime configuration
- Added cavieats about cgroup driver field
-
Add swap to stats to Summary API and Prometheus endpoints (/stats/summary and /metrics/resource)
- Added
SwapUsage
type - Added
SwapUsage
field toContainerStats
type
- Added
-
Expose commit memory used in WindowsMemoryUsage struct
- Added the
commit_memory_bytes
field to typeWindowsMemoryUsage
- Added the
v1.29
git diff v1.28.0 v1.29.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
Add runtime handler field to ImageSpec struct
- Added
runtime_handler
field to typeImageSpec
- Added
-
Add container filesystem to the ImageFsInfoResponse
- Added
container_filesystems
field to typeImageFsInfoResponse
- Added
v1.30
git diff v1.29.0 v1.30.0 -- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto
-
Recursive Read-only (RRO) mounts
- Added RuntimeHandler and RuntimeHandlerFeatures type
- Added
recursive_read_only
field to typeMount
- Added
runtime_handlers
field to typeStatusResponse
-
Add user_namespaces field to RuntimeHandlerFeatures
- Added
user_namespaces
field to typeRuntimeHandlerFeatures
- Added
-
Add image_id to CRI Container message
- Added
image_id
field to typeContainer
- Added
-
Add image_id to CRI ContainerStatus message
- Added
image_id
field to typeContainerStatus
- Added
Community, discussion, contribution, and support
Learn how to engage with the Kubernetes community on the community page.
You can reach the maintainers of this repository at:
- Slack: #sig-node (on https://kubernetes.slack.com -- get an invite at slack.kubernetes.io)
- Mailing List: https://groups.google.com/forum/#!forum/kubernetes-sig-node
Code of Conduct
Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.
Contribution Guidelines
See CONTRIBUTING.md for more information. Please note that kubernetes/cri-api is a readonly mirror repository, all development is done at kubernetes/kubernetes.
Documentation ¶
There is no documentation for this package.