Skip to content

Commit ee38d83

Browse files
authoredMar 27, 2025··
docs/envoy-tutorial-standalone: simplify 'kind' usage instruction (#7465)
For me installing docker (desktop on Mac) wasn't enough to use kind. I had to install kind. This is compatible with the kind installation instruction which specifies to install kind after installing docker. Additionally just installing docker isn't enough. It needs to be running. The docker info is a bit confusion in this regard, because if it's installed but not running, it will show output compatible with the example in the tutorial. Since this tutorial isn't (much) about docker, and the kind installation instructions I'd suggest to strike the rest of the text and just refer to the kind usage/installation instruction, which was already there. Signed-off-by: Joost Holslag <[email protected]>
1 parent 3d3b45f commit ee38d83

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed
 

‎docs/content/envoy-tutorial-standalone-envoy.md

+1-19
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,7 @@ are co-located in the same pod.
2626
## Running a local Kubernetes cluster
2727

2828
To start a local Kubernetes cluster to run our demo, we'll be using
29-
[kind](https://kind.sigs.k8s.io/). In order to use the `kind` command,
30-
you'll need to have Docker installed on your machine. Running
31-
`docker info` is the easiest way to check if Docker is installed and
32-
running.
33-
34-
You should see output similar to the following, showing information about
35-
the Docker client **and** server on our machine:
36-
37-
```shell
38-
$ docker info
39-
Client:
40-
...
41-
42-
Server:
43-
...
44-
```
45-
46-
If the above command shows information for both the client and server,
47-
then Docker is installed and running.
29+
[kind](https://kind.sigs.k8s.io/).
4830

4931
{{< info >}}
5032
If you haven't used `kind` before, you can find installation instructions

0 commit comments

Comments
 (0)
Please sign in to comment.