Skip to content

Commit 5e81561

Browse files
committed
Document container runtimes available
1 parent da3b57c commit 5e81561

File tree

5 files changed

+62
-3
lines changed

5 files changed

+62
-3
lines changed

site/content/en/docs/handbook/config.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,11 @@ The default container runtime in minikube is Docker. You can select it explicitl
9595
minikube start --container-runtime=docker
9696
```
9797

98-
Other options available are:
98+
Options available are:
9999

100-
* [containerd](https://github.com/containerd/containerd)
101-
* [cri-o](https://github.com/cri-o/cri-o)
100+
* [containerd]({{<ref "/docs/runtimes/containerd">}})
101+
* [cri-o]({{<ref "/docs/runtimes/cri-o">}})
102+
* [docker]({{<ref "/docs/runtimes/docker">}})
102103

103104
## Environment variables
104105

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: "Runtimes"
3+
linkTitle: "Runtimes"
4+
weight: 8
5+
no_list: true
6+
description: >
7+
Configuring various container runtimes
8+
aliases:
9+
- /docs/reference/runtimes
10+
---
11+
Kubernetes requires a container runtime to be installed.
12+
13+
Here is what's supported:
14+
15+
## containerd
16+
17+
* [containerd]({{<ref "containerd.md">}})
18+
19+
## cri-o
20+
21+
* [cri-o]({{<ref "cri-o.md">}})
22+
23+
## docker
24+
25+
* [docker]({{<ref "docker.md">}})
26+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "containerd"
3+
aliases:
4+
- /docs/reference/runtimes/containerd
5+
---
6+
7+
Home page: <https://containerd.io>
8+
9+
<https://github.com/containerd/containerd>
10+
<https://github.com/moby/buildkit>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "cri-o"
3+
aliases:
4+
- /docs/reference/runtimes/cri-o
5+
---
6+
7+
Home page: <https://cri-o.io>
8+
9+
See also `minikube podman-env`
10+
11+
<https://github.com/cri-o/cri-o>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "docker"
3+
aliases:
4+
- /docs/reference/runtimes/docker
5+
---
6+
7+
Home page: <https://docker.com>
8+
9+
See also `minikube docker-env`
10+
11+
<https://docs.docker.com/engine/>

0 commit comments

Comments
 (0)