Skip to content

Commit

Permalink
Merge pull request #3610 from BenTheElder/mark-0230
Browse files Browse the repository at this point in the history
Mark v0.23.0
  • Loading branch information
BenTheElder authored May 14, 2024
2 parents 4a36b22 + b8e4c16 commit 5d17676
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 45 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.22.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.23.0 && kind create cluster` is all you need!

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

Expand All @@ -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.22.0`.
You can install kind with `go install sigs.k8s.io/kind@v0.23.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.

Expand All @@ -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.22.0/kind-$(uname)-amd64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-$(uname)-amd64
# For ARM64
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-$(uname)-arm64
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-$(uname)-arm64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
```
Expand All @@ -66,17 +66,17 @@ On macOS via Bash:

```console
# For Intel Macs
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-darwin-amd64
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-darwin-amd64
# For M1 / ARM Macs
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-darwin-arm64
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-darwin-arm64
chmod +x ./kind
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.22.0/kind-windows-amd64
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.23.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)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/kind/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func DisplayVersion() string {
}

// versionCore is the core portion of the kind CLI version per Semantic Versioning 2.0.0
const versionCore = "0.23.0"
const versionCore = "0.24.0"

// versionPreRelease is the base pre-release portion of the kind CLI version per
// Semantic Versioning 2.0.0
Expand Down
74 changes: 37 additions & 37 deletions site/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,47 +13,47 @@ disableKinds = ["taxonomy", "taxonomyTerm"]

# syntax highlighting options
[markup]
[markup.highlight]
codeFences = true
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "vs"
tabWidth = 4
[markup.highlight]
codeFences = true
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "vs"
tabWidth = 4

# allow html in markdown
[markup.goldmark.renderer]
unsafe=true
unsafe = true

# enable hugo's menu system for the site, name the primary menu
sectionPagesMenu = "main"
# menu entries
[menu]
[[menu.main]]
identifier = "ome"
name = "Home"
title = "Home"
url = "/"
weight = 1
[[menu.main]]
identifier = "user"
name = "User Guide"
title = "User Guide"
weight = 2
[[menu.main]]
identifier = "design"
name = "Design"
title = "Design"
url = "/docs/design/"
weight = 5
[[menu.main]]
identifier = "contributing"
name = "Contributing"
title = "contributing"
url = "/docs/contributing/"
weight = 6
[[menu.main]]
identifier = "ome"
name = "Home"
title = "Home"
url = "/"
weight = 1
[[menu.main]]
identifier = "user"
name = "User Guide"
title = "User Guide"
weight = 2
[[menu.main]]
identifier = "design"
name = "Design"
title = "Design"
url = "/docs/design/"
weight = 5
[[menu.main]]
identifier = "contributing"
name = "Contributing"
title = "contributing"
url = "/docs/contributing/"
weight = 6

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

[params]
stable = "v0.22.0"
stable = "v0.23.0"

# privacy settings
[privacy]
[privacy.youtube]
# enable the cookie-less youtube in built-in hugo shortcode
privacyEnhanced = true
[privacy.youtube]
# enable the cookie-less youtube in built-in hugo shortcode
privacyEnhanced = true

0 comments on commit 5d17676

Please sign in to comment.