Skip to content

Commit e11d3ea

Browse files
author
Tim Bannister
committed
Use make-container serve by default
The switch from: $ make docker-serve to: $ make container-serve is far enough in the past that everyone should have a current Makefile. Also highlight the command to fetch and use submodules.
1 parent 2ebd8a7 commit e11d3ea

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

content/en/docs/contribute/generate-ref-docs/kubectl.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,9 @@ Build the Kubernetes documentation in your local `<web-base>`.
230230

231231
```shell
232232
cd <web-base>
233-
make docker-serve
233+
git submodule update --init --recursive --depth 1 # if not already done
234+
make container-serve
234235
```
235-
{{< note >}}
236-
The use of `make docker-serve` is deprecated. Please use `make container-serve` instead.
237-
{{< /note >}}
238236

239237
View the [local preview](https://localhost:1313/docs/reference/generated/kubectl/kubectl-commands/).
240238

content/en/docs/contribute/generate-ref-docs/kubernetes-api.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,10 @@ Verify the [local preview](http://localhost:1313/docs/reference/generated/kubern
182182
183183
```shell
184184
cd <web-base>
185-
make docker-serve
185+
git submodule update --init --recursive --depth 1 # if not already done
186+
make container-serve
186187
```
187188

188-
{{< note >}}
189-
The use of `make docker-serve` is deprecated. Please use `make container-serve` instead.
190-
{{< /note >}}
191-
192189
## Commit the changes
193190

194191
In `<web-base>` run `git add` and `git commit` to commit the change.

0 commit comments

Comments
 (0)