Skip to content

Commit d8045c8

Browse files
committed
Update docs for v0.28.0
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
1 parent 65d4298 commit d8045c8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
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.27.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.28.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.27.0`.
26+
You can install kind with `go install sigs.k8s.io/kind@v0.28.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.27.0/kind-$(uname)-amd64
46+
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.0/kind-$(uname)-amd64
4747
# For ARM64
48-
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.27.0/kind-$(uname)-arm64
48+
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.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.27.0/kind-darwin-amd64
69+
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.0/kind-darwin-amd64
7070
# For M1 / ARM Macs
71-
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.27.0/kind-darwin-arm64
71+
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.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.27.0/kind-windows-amd64
79+
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.28.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ baseName = "_redirects"
6767
home = ["HTML", "REDIRECTS"]
6868

6969
[params]
70-
stable = "v0.27.0"
70+
stable = "v0.28.0"
7171

7272
# privacy settings
7373
[privacy]

0 commit comments

Comments
 (0)