Skip to content

Commit

Permalink
bump version in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTheElder committed Dec 4, 2019
1 parent 3a64bc2 commit 190ef7d
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 is primarily designed for testing Kubernetes 1.11+, initially targeting the [conformance tests].

If you have [go] ([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/[email protected].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/[email protected].1 && kind create cluster` is all you need!

<img src="https://gist.githubusercontent.com/BenTheElder/621bc321fc6d9506fd936feb36d32dd0/raw/13fe81c219e64b4917575c8988e06719c072c7f1/kind-demo.gif" alt="2x speed `kind create cluster` demo" />

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/[email protected].0`.
You can install kind with `GO111MODULE="on" go get sigs.k8s.io/[email protected].1`.

**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://github.com/kubernetes-sigs/kind/releases/download/v0.6.0/kind-$(uname)-amd64
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.6.1/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://github.com/kubernetes-sigs/kind/releases/download/v0.6.0/kind-windows-amd64
curl.exe -Lo kind-windows-amd64.exe https://github.com/kubernetes-sigs/kind/releases/download/v0.6.1/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 @@ -3,7 +3,7 @@
[kind] is a tool for running local Kubernetes clusters using Docker container "nodes".
kind is primarily designed for testing Kubernetes 1.11+, initially targeting the [conformance tests].

If you have [go] \([1.11+][go-supported]) and [docker] installed `GO111MODULE="on" go get sigs.k8s.io/[email protected].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/[email protected].1 && kind create cluster` is all you need!

<img src="https://gist.githubusercontent.com/BenTheElder/621bc321fc6d9506fd936feb36d32dd0/raw/13fe81c219e64b4917575c8988e06719c072c7f1/kind-demo.gif" alt="2x speed `kind create cluster` demo" />

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 @@ -14,7 +14,7 @@ This guide covers getting started with the `kind` command.

## Installation

You can either install kind with `GO111MODULE="on" go get sigs.k8s.io/[email protected].0` or clone this repo
You can either install kind with `GO111MODULE="on" go get sigs.k8s.io/[email protected].1` or clone this repo
and run `make build` from the repository.

**NOTE**: please use the latest Go to do this, ideally go 1.13 or greater.
Expand All @@ -34,7 +34,7 @@ into your `$PATH`.
On macOS / Linux:

```bash
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.6.0/kind-$(uname)-amd64
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.6.1/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind
```
Expand All @@ -48,7 +48,7 @@ brew install kind
On Windows:

```powershell
curl.exe -Lo kind-windows-amd64.exe https://github.com/kubernetes-sigs/kind/releases/download/v0.6.0/kind-windows-amd64
curl.exe -Lo kind-windows-amd64.exe https://github.com/kubernetes-sigs/kind/releases/download/v0.6.1/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

0 comments on commit 190ef7d

Please sign in to comment.