Merge pull request #13359 from afbjorklund/handbook-runtimes

Document container runtimes available
pull/14894/head
Medya Ghazizadeh 2022-08-31 14:10:35 -04:00 committed by GitHub
commit d2a8970917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 62 additions and 3 deletions

View File

@ -95,10 +95,11 @@ The default container runtime in minikube varies. You can select one explicitly
minikube start --container-runtime=docker
```
Other options available are:
Options available are:
* [containerd](https://github.com/containerd/containerd)
* [cri-o](https://github.com/cri-o/cri-o)
* [containerd]({{<ref "/docs/runtimes/containerd">}})
* [cri-o]({{<ref "/docs/runtimes/cri-o">}})
* [docker]({{<ref "/docs/runtimes/docker">}})
See <https://kubernetes.io/docs/setup/production-environment/container-runtimes/>

View File

@ -0,0 +1,26 @@
---
title: "Runtimes"
linkTitle: "Runtimes"
weight: 8
no_list: true
description: >
Configuring various container runtimes
aliases:
- /docs/reference/runtimes
---
Kubernetes requires a container runtime to be installed.
Here is what's supported:
## containerd
* [containerd]({{<ref "containerd.md">}})
## cri-o
* [cri-o]({{<ref "cri-o.md">}})
## docker
* [docker]({{<ref "docker.md">}})

View File

@ -0,0 +1,10 @@
---
title: "containerd"
aliases:
- /docs/reference/runtimes/containerd
---
Home page: <https://containerd.io>
<https://github.com/containerd/containerd>
<https://github.com/moby/buildkit>

View File

@ -0,0 +1,11 @@
---
title: "cri-o"
aliases:
- /docs/reference/runtimes/cri-o
---
Home page: <https://cri-o.io>
See also `minikube podman-env`
<https://github.com/cri-o/cri-o>

View File

@ -0,0 +1,11 @@
---
title: "docker"
aliases:
- /docs/reference/runtimes/docker
---
Home page: <https://docker.com>
See also `minikube docker-env`
<https://docs.docker.com/engine/>