Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#1540 from BenTheElder/update-docs-080
Browse files Browse the repository at this point in the history
s/v0.7.0/v0.8.0 in docs
  • Loading branch information
BenTheElder authored May 1, 2020
2 parents 34d2e98 + a6b207c commit b46fd10
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 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.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.7.0 && kind create cluster` is all you need!
If you have [go] ([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.0 && kind create cluster` is all you need!

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

Expand All @@ -21,7 +21,7 @@ kind bootstraps each "node" with [kubeadm][kubeadm]. For more details see [the d

## Installation and usage

You can install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.7.0`.
You can install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.0`.

**NOTE**: please use the latest go to do this, ideally go 1.13 or greater.

Expand All @@ -40,7 +40,7 @@ into your `$PATH`:
On Mac & Linux:

```console
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.7.0/kind-$(uname)-amd64"
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.8.0/kind-$(uname)-amd64"
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind
```
Expand All @@ -54,7 +54,7 @@ brew install kind
On Windows:

```powershell
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.7.0/kind-windows-amd64
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.8.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 site/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tile: kind
[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.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.7.0 && kind create cluster` is all you need!
If you have [go] \([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.0 && kind create cluster` is all you need!

<img src="images/kind-create-cluster.png" />

Expand Down
6 changes: 3 additions & 3 deletions site/content/docs/user/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This guide covers getting started with the `kind` command.
but you will not be able to perform some of the examples in our docs without it.
To install `kubectl` see the upstream reference here https://kubernetes.io/docs/tasks/tools/install-kubectl/

You can either install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.7.0` or clone this repo
You can either install kind with `GO111MODULE="on" go get sigs.k8s.io/kind@v0.8.0` or clone this repo
and run `make build` from the repository.

Please use the latest Go when installing KIND from source, ideally go 1.14 or greater.
Expand All @@ -37,7 +37,7 @@ into your `$PATH`.
On macOS / Linux:

{{< codeFromInline lang="bash" >}}
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.7.0/kind-$(uname)-amd64
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.0/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind
{{< /codeFromInline >}}
Expand All @@ -51,7 +51,7 @@ brew install kind
On Windows:

{{< codeFromInline lang="powershell" >}}
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.7.0/kind-windows-amd64
curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.8.0/kind-windows-amd64
Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe
{{< /codeFromInline >}}

Expand Down

0 comments on commit b46fd10

Please sign in to comment.