forked from kubernetes-sigs/kind
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a64bc2
commit 190ef7d
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" /> | ||
|
||
|
@@ -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. | ||
|
||
|
@@ -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 | ||
``` | ||
|
@@ -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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" /> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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 | ||
``` | ||
|
@@ -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) | ||
|