-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add containerd and CRI-O to glossary
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: containerd | ||
id: containerd | ||
date: 2019-05-14 | ||
full_link: https://containerd.io/docs/ | ||
short_description: > | ||
Container runtime with an emphasis on simplicity, robustness and portability | ||
aka: | ||
tags: | ||
- tool | ||
--- | ||
A container runtime with an emphasis on simplicity, robustness and portability | ||
|
||
<!--more--> | ||
|
||
containerd is a {{< glossary_tooltip text="container" term_id="container" >}} runtime | ||
that runs as a daemon on Linux or Windows. containerd takes care of fetching and | ||
storing container images, executing containers, providing network access, and more. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: CRI-O | ||
id: cri-o | ||
date: 2019-05-14 | ||
full_link: https://cri-o.io/docs/ | ||
short_description: > | ||
Lightweight container runtime specifically for Kubernetes | ||
aka: | ||
tags: | ||
- tool | ||
--- | ||
A container runtime that lets OCI-compliant runtimes work with Kubernetes. | ||
|
||
<!--more--> | ||
|
||
CRI-O is an implementation of the {{< glossary_tooltip term_id="cri" >}} | ||
to enable using {{< glossary_tooltip text="container" term_id="container" >}} | ||
runtimes that are compatible with the Open Container Initiative (OCI) | ||
[runtime spec](http://www.github.com/opencontainers/runtime-spec). | ||
|
||
Deploying CRI-O allows Kubernetes to use any OCI-compliant runtime as the container | ||
runtime for running {{< glossary_tooltip text="Pods" term_id="pod" >}}, and to fetch | ||
OCI container images from remote registries. |