No description
Find a file
Mrunal Patel 7700a62347 conmon: Create oom file for container on OOM notification
Signed-off-by: Mrunal Patel <mpatel@redhat.com>
2017-05-25 11:30:58 -07:00
.tool lint: Extend deadline 2017-04-24 18:44:49 +02:00
cmd server: container_status: we should return digested references in imageRef 2017-05-22 16:37:46 +02:00
completions/bash Add missing man pages and bash completions for kpod 2016-12-02 10:17:58 -05:00
conmon conmon: Create oom file for container on OOM notification 2017-05-25 11:30:58 -07:00
contrib contrib: test: CNI plugins moved repo 2017-05-25 18:13:15 +02:00
docs Fix remnants of ocid -> crio rename 2017-05-15 15:05:58 -07:00
hack build: find dependencies for Go executables 2017-03-31 20:45:21 -05:00
logo Adding cri-o logo artwork 2017-03-01 13:34:30 -05:00
oci oci: do not serialize empty fields on disk 2017-05-18 21:19:51 +02:00
pause pause: Fix compilation warning 2017-04-21 16:17:53 -07:00
pkg vendor: upgrade containers/storage 2017-05-17 22:18:07 +02:00
server Merge pull request #534 from runcom/volumes-workaround 2017-05-22 10:59:44 -07:00
test Merge pull request #534 from runcom/volumes-workaround 2017-05-22 10:59:44 -07:00
utils oci: ignore non existing containers on delete 2017-05-18 21:19:45 +02:00
vendor vendor: upgrade containers/storage 2017-05-17 22:18:07 +02:00
.gitignore Update gitignore to replace ocic with crioctl 2017-05-15 14:46:42 -04:00
.travis.yml Rename ocid to crio. 2017-05-12 09:56:06 -04:00
code-of-conduct.md Add a code of conduct based on github.com/kubernetes/kubernetes 2016-09-09 15:26:59 -07:00
Dockerfile Dockerfile: move to containernetworking/plugins 2017-05-25 18:13:53 +02:00
kubernetes.md Rename ocid to crio. 2017-05-12 09:56:06 -04:00
LICENSE Initial commit 2016-09-09 12:56:31 -07:00
lock.json vendor: upgrade containers/storage 2017-05-17 22:18:07 +02:00
Makefile Makefile: enable git-validation dangling whitespace 2017-05-16 15:23:35 +02:00
manifest.json vendor: upgrade containers/storage 2017-05-17 22:18:07 +02:00
OWNERS Update the OWNERS file 2017-01-23 11:14:28 -08:00
README.md README.md: fix deps 2017-05-16 18:29:07 +02:00
seccomp.json add seccomp support 2016-11-28 22:05:34 +01:00
tutorial.md Rename ocid to crio. 2017-05-12 09:56:06 -04:00

cri-o logo

cri-o - OCI-based implementation of Kubernetes Container Runtime Interface

Build Status Go Report Card

Status: pre-alpha

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 scope for 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 backwards compatibility with it.

This 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.

Getting started

Prerequisites

runc version 1.0.0.rc1 or greater is expected to be installed on the system. It is picked up as the default runtime by crio.

Build Dependencies

Required

Fedora, CentOS, RHEL, and related distributions:

yum install -y \
  btrfs-progs-devel \
  device-mapper-devel \
  glib2-devel \
  glibc-devel \
  glibc-static \
  gpgme-devel \
  libassuan-devel \
  libgpg-error-devel \
  libseccomp-devel \
  libselinux-devel \
  pkgconfig \
  json-glib-devel \
  runc

Debian, Ubuntu, and related distributions:

apt install -y \
  btrfs-tools \
  libassuan-dev \
  libdevmapper-dev \
  libglib2.0-dev \
  libc6-dev \
  libgpgme11-dev \
  libgpg-error-dev \
  libseccomp-dev \
  libselinux1-dev \
  pkg-config \
  libjson-glib-dev \
  runc

If using an older release or a long-term support release, be careful to double-check that the version of runc is new enough, or else build your own.

Optional

Fedora, CentOS, RHEL, and related distributions:

(no optional packages)

Debian, Ubuntu, and related distributions:

apt install -y \
  libapparmor-dev

Get Source Code

As with other Go projects, cri-o must be cloned into a directory structure like:

GOPATH
└── src
    └── github.com
        └── kubernetes-incubator
            └── cri-o

First, configure a GOPATH (if you are using go1.8 or later, this defaults to ~/go).

export GOPATH=~/go
mkdir -p $GOPATH

Next, clone the source code using:

mkdir -p $GOPATH/src/github.com/kubernetes-incubator
cd $_ # or cd $GOPATH/src/github.com/kubernetes-incubator
git clone https://github.com/kubernetes-incubator/cri-o # or your fork
cd cri-o

Build

make install.tools
make
sudo make install

Otherwise, if you do not want to build cri-o with seccomp support you can add BUILDTAGS="" when running make.

make BUILDTAGS=""
sudo make install

Build Tags

cri-o supports optional build tags for compiling support of various features. To add build tags to the make option the BUILDTAGS variable must be set.

make BUILDTAGS='seccomp apparmor'
Build Tag Feature Dependency
seccomp syscall filtering libseccomp
selinux selinux process and mount labeling libselinux
apparmor apparmor profile support libapparmor

Running pods and containers

Follow this tutorial to get started with CRI-O.

Setup CNI networking

A proper description of setting up CNI networking is given in the contrib/cni README. But the gist is that you need to have some basic network configurations enabled and CNI plugins installed on your system.

Running with kubernetes

You can run a local version of kubernetes with cri-o using local-up-cluster.sh:

  1. Clone the kubernetes repository
  2. Start the cri-o daemon (crio)
  3. From the kubernetes project directory, run: CONTAINER_RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT='/var/run/crio.sock --runtime-request-timeout=15m' ./hack/local-up-cluster.sh

To run a full cluster, see the instructions.

Current Roadmap

  1. Basic pod/container lifecycle, basic image pull (already works)
  2. Support for tty handling and state management
  3. Basic integration with kubelet once client side changes are ready
  4. Support for log management, networking integration using CNI, pluggable image/storage management
  5. Support for exec/attach
  6. Target fully automated kubernetes testing without failures