MCPcopy
hub / github.com/cri-o/cri-o

github.com/cri-o/cri-o @v1.36.2 sqlite

repository ↗ · DeepWiki ↗ · release v1.36.2 ↗
3,218 symbols 12,030 edges 478 files 1,956 documented · 61%
README

CRI-O logo

CRI-O - OCI-based implementation of Kubernetes Container Runtime Interface

Stable Status codecov Packages Release Notes Dependencies GoDoc OpenSSF Scorecard OpenSSF Best Practices Go Report Card FOSSA Status Mentioned in Awesome CRI-O Gitpod ready-to-code

Compatibility matrix: CRI-O ⬄ Kubernetes

CRI-O follows the Kubernetes release cycles with respect to its minor versions (1.x.y). Patch releases (1.x.z) for Kubernetes are not in sync with those from CRI-O, because they are scheduled for each month, whereas CRI-O provides them only if necessary. If a Kubernetes release goes End of Life, then the corresponding CRI-O version can be considered in the same way.

This means that CRI-O also follows the Kubernetes n-2 release version skew policy when it comes to feature graduation, deprecation or removal. This also applies to features which are independent from Kubernetes. Nevertheless, feature backports to supported release branches, which are independent from Kubernetes or other tools like cri-tools, are still possible. This allows CRI-O to decouple from the Kubernetes release cycle and have enough flexibility when it comes to implement new features. Every feature to be backported will be a case by case decision of the community while the overall compatibility matrix should not be compromised.

For more information visit the Kubernetes Version Skew Policy.

CRI-O Kubernetes Maintenance status
main branch master branch Features from the main Kubernetes repository are actively implemented
release-1.x branch (v1.x.y) release-1.x branch (v1.x.z) Maintenance is manual, only bugfixes will be backported.

The release notes for CRI-O are hand-crafted and can be continuously retrieved from our GitHub pages website.

What is the scope of this project?

CRI-O is meant to provide an integration path between OCI conformant runtimes and the Kubelet. Specifically, it implements the Kubelet Container Runtime Interface (CRI) using OCI conformant runtimes. The scope of CRI-O is tied to the scope of the CRI.

At a high level, we expect the scope of CRI-O to be restricted to the following functionalities:

  • Support multiple image formats including the existing Docker image format
  • Support for multiple means to download images including trust & image verification
  • Container image management (managing image layers, overlay filesystems, etc)
  • Container process lifecycle management
  • Monitoring and logging required to satisfy the CRI
  • Resource isolation as required by the CRI

What is not in the scope of this project?

  • Building, signing and pushing images to various image storages
  • A CLI utility for interacting with CRI-O. Any CLIs built as part of this project are only meant for testing this project and there will be no guarantees on the backward compatibility with it.

CRI-O is an implementation of the Kubernetes Container Runtime Interface (CRI) that will allow Kubernetes to directly launch and manage Open Container Initiative (OCI) containers.

The plan is to use OCI projects and best of breed libraries for different aspects:

It is currently in active development in the Kubernetes community through the design proposal. Questions and issues should be raised in the Kubernetes sig-node Slack channel.

Roadmap

A roadmap that describes the direction of CRI-O can be found here. The project is tracking all ongoing efforts as part of the Feature Roadmap GitHub project.

CI images and jobs

CRI-O's CI is split-up between GitHub actions and OpenShift CI (Prow). Relevant virtual machine images used for the prow jobs are built periodically in the jobs:

The jobs are maintained from the openshift/release repository and define workflows used for the particular jobs. The actual job definitions can be found in the same repository under ci-operator/jobs/cri-o/cri-o/cri-o-cri-o-main-presubmits.yaml for the main branch as well as the corresponding files for the release branches. The base image configuration for those jobs is available in the same repository under ci-operator/config/cri-o/cri-o.

Commands

Command Description
crio(8) OCI Kubernetes Container Runtime daemon

Examples of commandline tools to interact with CRI-O (or other CRI compatible runtimes) are Crictl and Podman.

Configuration

File Description
crio.conf(5) CRI-O Configuration file
policy.json(5) Signature Verification Policy File(s)
registries.conf(5) Registries Configuration file
storage.conf(5) Storage Configuration file

For information about CRI-O annotations and their migration to Kubernetes-recommended naming conventions, see the Annotation Migration Guide.

Security

The security process for reporting vulnerabilities is described in SECURITY.md.

OCI Hooks Support

You can configure CRI-O to inject OCI Hooks when creating containers.

CRI-O Usage Transfer

We provide useful information for operations and development transfer as it relates to infrastructure that utilizes CRI-O.

Communication

For async communication and long-running discussions please use issues and pull requests on the GitHub repo. This will be the best place to discuss design and implementation.

For chat communication, we have a channel on the Kubernetes slack that everyone is welcome to join and chat about development.

Awesome CRI-O

We maintain a curated list of links related to CRI-O. Did you find something interesting on the web about the project? Awesome, feel free to open up a PR and add it to the list.

Getting started

Installing CRI-O

To install CRI-O, you can follow our installation guide. Alternatively, if you'd rather build CRI-O from source, checkout our setup guide.

Running Kubernetes with CRI-O

Before you begin, you'll need to start CRI-O

You can run a local version of Kubernetes with CRI-O using local-up-cluster.sh:

  1. Clone the Kubernetes repository
  2. From the Kubernetes project directory, run:
CGROUP_DRIVER=systemd \
CONTAINER_RUNTIME=remote \
CONTAINER_RUNTIME_ENDPOINT='unix:///var/run/crio/crio.sock' \
./hack/local-up-cluster.sh

For more guidance in running CRI-O, visit our tutorial page

The HTTP status API

CRI-O exposes per default the gRPC API to fulfill the Container Runtime Interface (CRI) of Kubernetes. Besides this, there exists an additional HTTP API to retrieve further runtime status information about CRI-O. Please be aware that this API is not considered to be stable and production use-cases should not rely on it.

On a running CRI-O instance, we can access the API via an HTTP transfer tool like curl:

$ sudo curl -v --unix-socket /var/run/crio/crio.sock http://localhost/info | jq
{
  "storage_driver": "btrfs",
  "storage_root": "/var/lib/containers/storage",
  "cgroup_driver": "systemd",
  "default_id_mappings": { ... }
}

The following API entry points are currently supported:

Path Content-Type Description
/info application/json General information about the runtime, like storage_driver and storage_root.
/containers/:id application/json Dedicated container information, like name, pid and image.
/config `application/toml

Extension points exported contracts — how you extend this code

RuntimeImpl (Interface)
RuntimeImpl is an interface used by the caller to interact with the container runtime. The purpose of this interface bei [5 …
internal/oci/oci.go
HostPortManager (Interface)
HostPortManager is an interface for adding and removing hostport for a given pod sandbox. nolint:golint // no reason to [4 …
internal/hostport/hostport_manager.go
RuntimeHandlerHooks (Interface)
nolint:iface // interface duplication is intentional [4 implementers]
internal/runtimehandlerhooks/runtime_handler_hooks.go
CgroupManager (Interface)
CgroupManager is an interface to interact with cgroups on a node. CRI-O is configured at startup to either use systemd o [4 …
internal/config/cgmgr/cgmgr_linux.go
Systemd (Interface)
Systemd is the main interface for supported systemd functionality. [3 implementers]
internal/watchdog/systemd.go
IdentifiableCreatable (Interface)
IdentifiableCreatable are the qualities needed by the caller of the resource. Once a resource is retrieved, SetCreated() [3 …
internal/resourcestore/resourcestore.go
ImageServer (Interface)
ImageServer wraps up various CRI-related activities into a reusable implementation. [3 implementers]
internal/storage/image.go
Iface (Interface)
Iface provides a config interface for data encapsulation. [2 implementers]
pkg/config/config.go

Core symbols most depended-on inside this repo

ID
called by 402
internal/lib/sandbox/builder.go
EXPECT
called by 382
test/mocks/lib/lib.go
Describe
called by 371
test/framework/framework.go
String
called by 220
test/docs-validation/main.go
Debugf
called by 193
internal/log/log.go
Warnf
called by 146
internal/log/log.go
Infof
called by 137
internal/log/log.go
Close
called by 136
internal/iptables/iptables.go

Shape

Method 2,074
Function 833
Struct 238
Interface 39
TypeAlias 26
FuncType 8

Languages

Go100%

Modules by API surface

test/mocks/containerstorage/containerstorage.go182 symbols
pkg/config/config.go92 symbols
internal/oci/container.go83 symbols
internal/lib/sandbox/builder.go74 symbols
server/nri-api.go68 symbols
internal/iptables/iptables.go67 symbols
internal/runtimehandlerhooks/high_performance_hooks_linux.go66 symbols
internal/oci/oci.go63 symbols
internal/storage/image.go57 symbols
test/mocks/criostorage/criostorage.go56 symbols
internal/lib/sandbox/sandbox.go56 symbols
internal/factory/container/container.go56 symbols

Dependencies from manifests, versioned

capnproto.org/go/capnp/v3v3.1.0-alpha.2 · 1×
cyphar.com/go-pathrsv0.2.1 · 1×
dario.cat/mergov1.0.2 · 1×
github.com/Masterminds/semver/v3v3.4.0 · 1×
github.com/Microsoft/go-winiov0.6.2 · 1×
github.com/ProtonMail/go-cryptov1.3.0 · 1×
github.com/VividCortex/ewmav1.2.0 · 1×
github.com/acarl005/stripansiv0.0.0-2018011610285 · 1×
github.com/asaskevich/govalidatorv0.0.0-2023030114320 · 1×
github.com/beorn7/perksv1.0.1 · 1×
github.com/blang/semver/v4v4.0.0 · 1×

For agents

$ claude mcp add cri-o \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact