Skip to content
This repository has been archived by the owner on Feb 24, 2020. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 1.54 KB

using-rkt-with-kubernetes.md

File metadata and controls

26 lines (18 loc) · 1.54 KB

Using rkt with Kubernetes (aka "rktnetes")

Kubernetes is a system for managing containerized applications across a cluster of machines. Kubernetes runs all applications in containers. In the default setup, this is performed using the Docker engine, but Kubernetes also features support for using rkt as its container runtime backend. This allows a Kubernetes cluster to leverage some of rkt's security features and native pod support.

Configuring rkt as the Kubernetes container runtime

The container runtime is configured at the kubelet level. The kubelet is the agent that runs on each machine to manage containers. The kubelet provides several flags to use rkt as the container runtime:

  • --container-runtime=rkt chooses rkt as the runtime.
  • --rkt-path sets the rkt binary path.
  • --rkt-stage1-image sets the stage1 image path.

The getting started with rkt guide in the Kubernetes repository provides more detailed information about how to launch a kubernetes cluster with rkt, how to debug it, and more.

Current Status

Integration of rkt as a container runtime for Kubernetes is under active development. For the latest information on the progress of the integration, check out this Google doc which tracks the detailed status of implemented functionality.