Merge pull request #3934 from stmcginnis/release-028

Release 028
This commit is contained in:
Sean McGinnis
2025-05-16 18:33:09 -05:00
committed by GitHub
3 changed files with 9 additions and 9 deletions

View File

@@ -5,7 +5,7 @@
kind is a tool for running local Kubernetes clusters using Docker container "nodes". kind is a tool for running local Kubernetes clusters using Docker container "nodes".
kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.
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! 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!
![](site/static/images/kind-create-cluster.png) ![](site/static/images/kind-create-cluster.png)
@@ -23,7 +23,7 @@ kind bootstraps each "node" with [kubeadm][kubeadm]. For more details see [the d
For a complete [install guide] see [the documentation here][install guide]. For a complete [install guide] see [the documentation here][install guide].
You can install kind with `go install sigs.k8s.io/kind@v0.27.0`. You can install kind with `go install sigs.k8s.io/kind@v0.28.0`.
**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. **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.
@@ -43,9 +43,9 @@ On Linux:
```console ```console
# For AMD64 / x86_64 # For AMD64 / x86_64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.27.0/kind-$(uname)-amd64 [ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.0/kind-$(uname)-amd64
# For ARM64 # For ARM64
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.27.0/kind-$(uname)-arm64 [ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.0/kind-$(uname)-arm64
chmod +x ./kind chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind sudo mv ./kind /usr/local/bin/kind
``` ```
@@ -66,9 +66,9 @@ On macOS via Bash:
```console ```console
# For Intel Macs # For Intel Macs
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.27.0/kind-darwin-amd64 [ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.0/kind-darwin-amd64
# For M1 / ARM Macs # For M1 / ARM Macs
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.27.0/kind-darwin-arm64 [ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.28.0/kind-darwin-arm64
chmod +x ./kind chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind mv ./kind /some-dir-in-your-PATH/kind
``` ```
@@ -76,7 +76,7 @@ mv ./kind /some-dir-in-your-PATH/kind
On Windows: On Windows:
```powershell ```powershell
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.27.0/kind-windows-amd64 curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.28.0/kind-windows-amd64
Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe
# OR via Chocolatey (https://chocolatey.org/packages/kind) # OR via Chocolatey (https://chocolatey.org/packages/kind)

View File

@@ -58,7 +58,7 @@ func DisplayVersion() string {
} }
// versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0 // versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0
const versionCore = "0.28.0" const versionCore = "0.29.0"
// versionPreRelease is the base pre-release portion of the kind CLI version per // versionPreRelease is the base pre-release portion of the kind CLI version per
// Semantic Versioning 2.0.0 // Semantic Versioning 2.0.0

View File

@@ -67,7 +67,7 @@ baseName = "_redirects"
home = ["HTML", "REDIRECTS"] home = ["HTML", "REDIRECTS"]
[params] [params]
stable = "v0.27.0" stable = "v0.28.0"
# privacy settings # privacy settings
[privacy] [privacy]