From c5f516c8b2c4927232074381c980467e393cf965 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Mon, 16 Dec 2024 13:54:05 -0800 Subject: [PATCH 1/3] version v0.26.0 --- pkg/cmd/kind/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/kind/version/version.go b/pkg/cmd/kind/version/version.go index e9fcb1200e..febfe8a04b 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -58,7 +58,7 @@ const versionCore = "0.26.0" // versionPreRelease is the base pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -var versionPreRelease = "alpha" +var versionPreRelease = "" // gitCommitCount count the commits since the last release. // It is injected at build time. From 06aadeb61354e417418d344a1f56706100e39436 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Mon, 16 Dec 2024 13:54:35 -0800 Subject: [PATCH 2/3] version v0.27.0-alpha --- pkg/cmd/kind/version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/kind/version/version.go b/pkg/cmd/kind/version/version.go index febfe8a04b..6663ebc805 100644 --- a/pkg/cmd/kind/version/version.go +++ b/pkg/cmd/kind/version/version.go @@ -54,11 +54,11 @@ func DisplayVersion() string { } // versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0 -const versionCore = "0.26.0" +const versionCore = "0.27.0" // versionPreRelease is the base pre-release portion of the kind CLI version per // Semantic Versioning 2.0.0 -var versionPreRelease = "" +var versionPreRelease = "alpha" // gitCommitCount count the commits since the last release. // It is injected at build time. From 1a332f549f37f91a1fe9682ad37bc5a0addaed9d Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Mon, 16 Dec 2024 13:59:54 -0800 Subject: [PATCH 3/3] update install docs for v0.26.0 --- README.md | 14 +++++++------- site/config.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e167c8b95a..3b561ecc2c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ 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. -If you have [go] 1.16+ and [docker], [podman] or [nerdctl] installed `go install sigs.k8s.io/kind@v0.25.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.26.0 && kind create cluster` is all you need! ![](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]. -You can install kind with `go install sigs.k8s.io/kind@v0.25.0`. +You can install kind with `go install sigs.k8s.io/kind@v0.26.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. @@ -43,9 +43,9 @@ On Linux: ```console # For AMD64 / x86_64 -[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.25.0/kind-$(uname)-amd64 +[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-$(uname)-amd64 # For ARM64 -[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.25.0/kind-$(uname)-arm64 +[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-$(uname)-arm64 chmod +x ./kind sudo mv ./kind /usr/local/bin/kind ``` @@ -66,9 +66,9 @@ On macOS via Bash: ```console # For Intel Macs -[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.25.0/kind-darwin-amd64 +[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-darwin-amd64 # For M1 / ARM Macs -[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.25.0/kind-darwin-arm64 +[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.26.0/kind-darwin-arm64 chmod +x ./kind mv ./kind /some-dir-in-your-PATH/kind ``` @@ -76,7 +76,7 @@ mv ./kind /some-dir-in-your-PATH/kind On Windows: ```powershell -curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.25.0/kind-windows-amd64 +curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.26.0/kind-windows-amd64 Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe # OR via Chocolatey (https://chocolatey.org/packages/kind) diff --git a/site/config.toml b/site/config.toml index 2fd831b70f..b15f38766d 100644 --- a/site/config.toml +++ b/site/config.toml @@ -67,7 +67,7 @@ baseName = "_redirects" home = ["HTML", "REDIRECTS"] [params] -stable = "v0.25.0" +stable = "v0.26.0" # privacy settings [privacy]