No description
Find a file
Samuel Ortiz 63c7a7c99b ocicni: Support asynchronous network config creation
We need to support cases where InitCNI() is called before
any CNI configuration files have been installed. This is
for example happening when deploying a k8s cluster with kubeadm.
kubeadm will start the DNS pod and it is left to the caller to
pick a network overlay and create the corresponding pods, that
will typically install a CNI configuration file first.

Here we address that issue by doing 2 things:

- Not returning an error when the default CNI config files
  directory is empty.
- If it is empty, we start a monitoring thread (fsnotify based)
  that will synchronize the network configuration when a CNI
  file is installed there.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
2017-04-10 17:36:28 +02:00
.tool oci: ignore silly lint errors 2017-04-05 02:45:56 +10:00
cmd Switch to using opencontainers/selinux 2017-03-23 15:53:09 -04:00
completions/bash Add missing man pages and bash completions for kpod 2016-12-02 10:17:58 -05:00
conmon conmon: add timestamps to logs 2017-04-05 02:45:57 +10:00
contrib contrib: cni: provide example CNI configurations 2017-03-20 23:08:28 +11:00
docs Update the default conmonPath 2017-03-29 21:23:52 +05:30
hack Merge pull request #352 from mrunalp/deps 2017-02-02 18:32:44 +01:00
logo Adding cri-o logo artwork 2017-03-01 13:34:30 -05:00
oci Print received container pid as int 2017-04-06 22:14:29 +05:30
pause *: add pause binary as a build target 2016-10-02 19:36:39 +11:00
pkg ocicni: Support asynchronous network config creation 2017-04-10 17:36:28 +02:00
server Merge pull request #433 from sameo/topic/sandboxrun-fixes 2017-04-06 18:46:24 +02:00
test test: add logging tests 2017-04-05 02:45:58 +10:00
utils Fix golint error 2017-03-16 14:09:38 -04:00
vendor vendor: Add fsnotify and remove glog 2017-04-06 23:06:36 +02:00
.gitignore conmon: implement logging to logPath 2017-04-05 02:45:57 +10:00
.travis.yml Add make to traivs 2017-03-02 14:13:03 +08: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 Change path of CNI build script and pin to a commit 2017-04-05 14:27:58 -04:00
kubernetes.md Update the default conmonPath 2017-03-29 21:23:52 +05:30
LICENSE Initial commit 2016-09-09 12:56:31 -07:00
lock.json vendor: Add fsnotify and remove glog 2017-04-06 23:06:36 +02:00
Makefile make: Fixup install/invocation of tools 2017-03-24 11:18:37 -07:00
manifest.json vendor: Add fsnotify and remove glog 2017-04-06 23:06:36 +02:00
OWNERS Update the OWNERS file 2017-01-23 11:14:28 -08:00
README.md Updates to README.md 2017-03-24 14:49:05 -07:00
seccomp.json add seccomp support 2016-11-28 22:05:34 +01:00
tutorial.md Change path of CNI build script and pin to a commit 2017-04-05 14:27:58 -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 ocid.

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 (ocid)
  3. From the kubernetes project directory, run: CONTAINER_RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT='/var/run/ocid.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