Skip to content

Commit bbd961b

Browse files
committed
Update to use CRI
1 parent ff4ae53 commit bbd961b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

contributors/devel/running-locally.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Getting started locally
55

66
- [Requirements](#requirements)
77
- [Linux](#linux)
8-
- [Docker](#docker)
8+
- [Container Runtime](#container-runtime)
99
- [etcd](#etcd)
1010
- [go](#go)
1111
- [OpenSSL](#openssl)
@@ -27,11 +27,9 @@ Getting started locally
2727

2828
Not running Linux? Consider running [Minikube](https://kubernetes.io/docs/setup/learning-environment/minikube/), or on a cloud provider like [Google Compute Engine](https://kubernetes.io/docs/setup/production-environment/turnkey/gce/).
2929

30-
### Docker
30+
### Container Runtime
3131

32-
You will need [Docker](https://docs.docker.com/get-docker/) installed, at least version 17.03. Check the [Kubernetes release notes](https://kubernetes.io/docs/setup/release/notes/) for information about supported Docker versions.
33-
34-
Ensure the Docker daemon is running and can be contacted with `docker ps`. Some of the Kubernetes components need to run as root, which normally works fine with docker.
32+
You will need a [Container Runtime](https://kubernetes.io/docs/setup/production-environment/container-runtimes/) like [Containerd](https://github.com/containerd/containerd) or [CRI-O](https://github.com/cri-o/cri-o) installed and running.
3533

3634
### etcd
3735

@@ -68,6 +66,11 @@ The `--depth=1` parameter is optional and will ensure a smaller download.
6866

6967
## Starting the cluster
7068

69+
Set the endpoint for container runtime e.g. containerd
70+
```sh
71+
export CONTAINER_RUNTIME_ENDPOINT="unix:///run/containerd/containerd.sock"
72+
```
73+
7174
In a separate tab of your terminal, run the following:
7275

7376
```sh

0 commit comments

Comments
 (0)