From 0d48a48ec48cc3ae7b406d6c67fc05b4cad5c9cf Mon Sep 17 00:00:00 2001 From: Tianyang Zhang Date: Sun, 27 Aug 2023 19:35:44 +0800 Subject: [PATCH] doc: update README Signed-off-by: Tianyang Zhang --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index a84afe0f..70a54640 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,20 @@ Kuasar is an efficient container runtime that provides cloud-native, all-scenario container solutions by supporting multiple sandbox techniques. Written in Rust, it offers a standard sandbox abstraction based on the sandbox API. Additionally, Kuasar provides an optimized framework to accelerate container startup and reduce unnecessary overheads. +# Supported Sandboxes + +| Sandboxer | Sandbox | Status | +|------------|------------------|--------------------| +| MicroVM | Cloud Hypervisor | Supported | +| | QEMU | Supported | +| | Firecracker | Planned in 2024 | +| | StratoVirt | Supported | +| Wasm | WasmEdge | Supported | +| | Wasmtime | Supported | +| | Wasmer | Planned in 2024 | +| App Kernel | gVisor | Planned in 2024 | +| | Quark | Supported | +| runC | runC | Planned in 2023 H2 | # Why Kuasar? In the container world, a sandbox is a technique used to separate container processes from each other, and from the operating system itself. After the introduction of the [Sandbox API](https://github.com/containerd/containerd/issues/4131), sandbox has become the first-class citizen in containerd. With more and more sandbox techniques available in the container world, a management service called "sandboxer" is expected to be proposed.