diff options
| author | Pengfei Ni <feiskyer@gmail.com> | 2016-09-29 13:33:21 +0800 |
|---|---|---|
| committer | Pengfei Ni <feiskyer@gmail.com> | 2016-09-29 22:19:15 +0800 |
| commit | da1f11e11bb5f5f8499a73b2c7a94a7a341acd39 (patch) | |
| tree | b51be369926d52092ad042d2f09f103eb9dc7921 | |
| parent | da57cb32c8fcaf65696ab32f53cf876c7426f896 (diff) | |
Kubelet: add proposal for HyperContainer runtime
Signed-off-by: Pengfei Ni <feiskyer@gmail.com>
| -rw-r--r-- | kubelet-hypercontainer-runtime.md | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/kubelet-hypercontainer-runtime.md b/kubelet-hypercontainer-runtime.md new file mode 100644 index 00000000..01fa4e01 --- /dev/null +++ b/kubelet-hypercontainer-runtime.md @@ -0,0 +1,74 @@ +<!-- BEGIN MUNGE: UNVERSIONED_WARNING --> + +<!-- BEGIN STRIP_FOR_RELEASE --> + +<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING" + width="25" height="25"> +<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING" + width="25" height="25"> +<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING" + width="25" height="25"> +<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING" + width="25" height="25"> +<img src="http://kubernetes.io/kubernetes/img/warning.png" alt="WARNING" + width="25" height="25"> + +<h2>PLEASE NOTE: This document applies to the HEAD of the source tree</h2> + +If you are using a released version of Kubernetes, you should +refer to the docs that go with that version. + +Documentation for other releases can be found at +[releases.k8s.io](http://releases.k8s.io). +</strong> +-- + +<!-- END STRIP_FOR_RELEASE --> + +<!-- END MUNGE: UNVERSIONED_WARNING --> + +Kubelet HyperContainer Container Runtime +======================================= + +Authors: Pengfei Ni (@feiskyer), Harry Zhang (@resouer) + +## Abstract + +This proposal aims to support [HyperContainer](http://hypercontainer.io) container +runtime in Kubelet. + +## Motivation + +HyperContainer is a Hypervisor-agnostic Container Engine that allows you to run Docker images using +hypervisors (KVM, Xen, etc.). By running containers within separate VM instances, it offers a +hardware-enforced isolation, which is required in multi-tenant environments. + +## Goals + +1. Complete pod/container/image lifecycle management with HyperContainer. +2. Setup network by network plugins. +3. 100% Pass node e2e tests. +4. Easy to deploy for both local dev/test and production clusters. + +## Design + +The HyperContainer runtime will make use of the kubelet Container Runtime Interface. [Fakti](https://github.com/kubernetes/frakti) implements the CRI interface and exposes +a local endpoint to Kubelet. Fakti communicates with [hyperd](https://github.com/hyperhq/hyperd) +with its gRPC API to manage the lifecycle of sandboxes, containers and images. + + + +## Limitations + +Since pods are running directly inside hypervisor, host network is not supported in HyperContainer +runtime. + +## Development + +The HyperContainer runtime is maintained by <https://github.com/kubernetes/frakti>. + + + +<!-- BEGIN MUNGE: GENERATED_ANALYTICS --> +[]() +<!-- END MUNGE: GENERATED_ANALYTICS --> |
