Skip to content

Commit b8e4c16

Browse files
committed
update install docs for 0.23.0
1 parent 4a86a9e commit b8e4c16

File tree

2 files changed

+44
-44
lines changed

2 files changed

+44
-44
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
kind is a tool for running local Kubernetes clusters using Docker container "nodes".
66
kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.
77

8-
If you have [go] 1.16+ and [docker], [podman] or [nerdctl] installed `go install sigs.k8s.io/kind@v0.22.0 && kind create cluster` is all you need!
8+
If you have [go] 1.16+ and [docker], [podman] or [nerdctl] installed `go install sigs.k8s.io/kind@v0.23.0 && kind create cluster` is all you need!
99

1010
![](site/static/images/kind-create-cluster.png)
1111

@@ -23,7 +23,7 @@ kind bootstraps each "node" with [kubeadm][kubeadm]. For more details see [the d
2323

2424
For a complete [install guide] see [the documentation here][install guide].
2525

26-
You can install kind with `go install sigs.k8s.io/kind@v0.22.0`.
26+
You can install kind with `go install sigs.k8s.io/kind@v0.23.0`.
2727

2828
**NOTE**: please use the latest go to do this. KIND is developed with the latest stable go, see [`.go-version`](./.go-version) for the exact version we're using.
2929

@@ -43,9 +43,9 @@ On Linux:
4343

4444
```console
4545
# For AMD64 / x86_64
46-
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-$(uname)-amd64
46+
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-$(uname)-amd64
4747
# For ARM64
48-
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-$(uname)-arm64
48+
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-$(uname)-arm64
4949
chmod +x ./kind
5050
sudo mv ./kind /usr/local/bin/kind
5151
```
@@ -66,17 +66,17 @@ On macOS via Bash:
6666

6767
```console
6868
# For Intel Macs
69-
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-darwin-amd64
69+
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-darwin-amd64
7070
# For M1 / ARM Macs
71-
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-darwin-arm64
71+
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-darwin-arm64
7272
chmod +x ./kind
7373
mv ./kind /some-dir-in-your-PATH/kind
7474
```
7575

7676
On Windows:
7777

7878
```powershell
79-
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.22.0/kind-windows-amd64
79+
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.23.0/kind-windows-amd64
8080
Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe
8181
8282
# OR via Chocolatey (https://chocolatey.org/packages/kind)

site/config.toml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -13,47 +13,47 @@ disableKinds = ["taxonomy", "taxonomyTerm"]
1313

1414
# syntax highlighting options
1515
[markup]
16-
[markup.highlight]
17-
codeFences = true
18-
hl_Lines = ""
19-
lineNoStart = 1
20-
lineNos = false
21-
lineNumbersInTable = true
22-
noClasses = true
23-
style = "vs"
24-
tabWidth = 4
16+
[markup.highlight]
17+
codeFences = true
18+
hl_Lines = ""
19+
lineNoStart = 1
20+
lineNos = false
21+
lineNumbersInTable = true
22+
noClasses = true
23+
style = "vs"
24+
tabWidth = 4
2525

2626
# allow html in markdown
2727
[markup.goldmark.renderer]
28-
unsafe=true
28+
unsafe = true
2929

3030
# enable hugo's menu system for the site, name the primary menu
3131
sectionPagesMenu = "main"
3232
# menu entries
3333
[menu]
34-
[[menu.main]]
35-
identifier = "ome"
36-
name = "Home"
37-
title = "Home"
38-
url = "/"
39-
weight = 1
40-
[[menu.main]]
41-
identifier = "user"
42-
name = "User Guide"
43-
title = "User Guide"
44-
weight = 2
45-
[[menu.main]]
46-
identifier = "design"
47-
name = "Design"
48-
title = "Design"
49-
url = "/docs/design/"
50-
weight = 5
51-
[[menu.main]]
52-
identifier = "contributing"
53-
name = "Contributing"
54-
title = "contributing"
55-
url = "/docs/contributing/"
56-
weight = 6
34+
[[menu.main]]
35+
identifier = "ome"
36+
name = "Home"
37+
title = "Home"
38+
url = "/"
39+
weight = 1
40+
[[menu.main]]
41+
identifier = "user"
42+
name = "User Guide"
43+
title = "User Guide"
44+
weight = 2
45+
[[menu.main]]
46+
identifier = "design"
47+
name = "Design"
48+
title = "Design"
49+
url = "/docs/design/"
50+
weight = 5
51+
[[menu.main]]
52+
identifier = "contributing"
53+
name = "Contributing"
54+
title = "contributing"
55+
url = "/docs/contributing/"
56+
weight = 6
5757

5858
# enable auto-generated _redirects file
5959
[mediaTypes."text/netlify"]
@@ -67,10 +67,10 @@ baseName = "_redirects"
6767
home = ["HTML", "REDIRECTS"]
6868

6969
[params]
70-
stable = "v0.22.0"
70+
stable = "v0.23.0"
7171

7272
# privacy settings
7373
[privacy]
74-
[privacy.youtube]
75-
# enable the cookie-less youtube in built-in hugo shortcode
76-
privacyEnhanced = true
74+
[privacy.youtube]
75+
# enable the cookie-less youtube in built-in hugo shortcode
76+
privacyEnhanced = true

0 commit comments

Comments
 (0)