No description
Find a file
Dan Walsh 4493b6f176 Rename ocid to crio.
The ocid project was renamed to CRI-O, months ago, it is time that we moved
all of the code to the new name.  We want to elminate the name ocid from use.
Move fully to crio.

Also cric is being renamed to crioctl for the time being.

Signed-off-by: Dan Walsh <dwalsh@redhat.com>
2017-05-12 09:56:06 -04:00
.tool lint: Extend deadline 2017-04-24 18:44:49 +02:00
cmd Rename ocid to crio. 2017-05-12 09:56:06 -04:00
completions/bash Add missing man pages and bash completions for kpod 2016-12-02 10:17:58 -05:00
conmon Rename ocid to crio. 2017-05-12 09:56:06 -04:00
contrib Rename ocid to crio. 2017-05-12 09:56:06 -04:00
docs Rename ocid to crio. 2017-05-12 09:56:06 -04: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 Rename ocid to crio. 2017-05-12 09:56:06 -04:00
pause pause: Fix compilation warning 2017-04-21 16:17:53 -07:00
pkg Rename ocid to crio. 2017-05-12 09:56:06 -04:00
server Rename ocid to crio. 2017-05-12 09:56:06 -04:00
test Rename ocid to crio. 2017-05-12 09:56:06 -04:00
utils Fix golint error 2017-03-16 14:09:38 -04:00
vendor Bump github.com/containers/image@efae299 2017-04-27 14:13:00 -04:00
.gitignore Rename ocid to crio. 2017-05-12 09:56:06 -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 sandbox: pass correct pod Namespace/Name to network plugins and fix id/name ordering 2017-05-05 23:55:37 -05: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 Bump github.com/containers/image@efae299 2017-04-27 14:13:00 -04:00
Makefile Rename ocid to crio. 2017-05-12 09:56:06 -04:00
manifest.json Update runtime-spec to v1.0.0.rc5 2017-04-12 19:15:53 -07:00
OWNERS Update the OWNERS file 2017-01-23 11:14:28 -08:00
README.md Rename ocid to crio. 2017-05-12 09:56:06 -04: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 \
  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 \
  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