mirror of
https://github.com/kubernetes-sigs/kind.git
synced 2025-12-01 07:26:05 +07:00
Merge pull request #2903 from BenTheElder/0.15-docs
update docs to point to v0.15.0
This commit is contained in:
10
README.md
10
README.md
@@ -25,7 +25,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 `GO111MODULE="on" go get sigs.k8s.io/kind@v0.14.0`.
|
||||
You can install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.15.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.
|
||||
|
||||
@@ -47,7 +47,7 @@ into your `$PATH`:
|
||||
On Linux:
|
||||
|
||||
```console
|
||||
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.14.0/kind-$(uname)-amd64"
|
||||
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.15.0/kind-$(uname)-amd64"
|
||||
chmod +x ./kind
|
||||
sudo mv ./kind /usr/local/bin/kind
|
||||
```
|
||||
@@ -68,9 +68,9 @@ On macOS via Bash:
|
||||
|
||||
```console
|
||||
# for Intel Macs
|
||||
[ $(uname -m) = x86_64 ]&& curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.14.0/kind-darwin-amd64
|
||||
[ $(uname -m) = x86_64 ]&& curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.15.0/kind-darwin-amd64
|
||||
# for M1 / ARM Macs
|
||||
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.14.0/kind-darwin-arm64
|
||||
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.15.0/kind-darwin-arm64
|
||||
chmod +x ./kind
|
||||
mv ./kind /some-dir-in-your-PATH/kind
|
||||
```
|
||||
@@ -78,7 +78,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.14.0/kind-windows-amd64
|
||||
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.15.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)
|
||||
|
||||
@@ -67,7 +67,7 @@ baseName = "_redirects"
|
||||
home = ["HTML", "REDIRECTS"]
|
||||
|
||||
[params]
|
||||
stable = "v0.14.0"
|
||||
stable = "v0.15.0"
|
||||
|
||||
# privacy settings
|
||||
[privacy]
|
||||
|
||||
Reference in New Issue
Block a user