Merge pull request #13359 from afbjorklund/handbook-runtimes
Document container runtimes availablepull/14894/head
commit
d2a8970917
|
@ -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/>
|
||||
|
||||
|
|
|
@ -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">}})
|
||||
|
|
@ -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>
|
|
@ -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>
|
|
@ -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/>
|
Loading…
Reference in New Issue