This repository was archived by the owner on Apr 25, 2023. It is now read-only.
File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,17 @@ script if you'd like to change the default:
43
43
NUM_CLUSTERS=< num> ./scripts/create-clusters.sh
44
44
```
45
45
46
- The ` KIND_TAG ` is ` v1.19.4 @sha256:796d09e217d93bed01ecf8502633e48fd806fe42f9d02fdd468b81cd4e3bd40b ` by default.
47
- Image ` kindest/node:v1.19.4 @sha256:796d09e217d93bed01ecf8502633e48fd806fe42f9d02fdd468b81cd4e3bd40b ` is used as
46
+ The ` KIND_TAG ` is ` v1.21.1 @sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6 ` by default.
47
+ Image ` kindest/node:v1.21.1 @sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6 ` is used as
48
48
node docker image for booting the cluster.
49
49
50
50
You can use ` KIND_IMAGE ` or ` KIND_TAG ` to specify the image as you want.
51
51
``` bash
52
- KIND_TAG=v1.18.8 ./scripts/create-clusters.sh
52
+ KIND_TAG=v1.19.4@sha256:796d09e217d93bed01ecf8502633e48fd806fe42f9d02fdd468b81cd4e3bd40b ./scripts/create-clusters.sh
53
53
```
54
54
55
55
``` bash
56
- KIND_IMAGE=kindest/node:v1.18.8 ./scripts/create-clusters.sh
56
+ KIND_IMAGE=kindest/node:v1.19.4@sha256:796d09e217d93bed01ecf8502633e48fd806fe42f9d02fdd468b81cd4e3bd40b ./scripts/create-clusters.sh
57
57
```
58
58
59
59
## Delete Clusters
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ set -o pipefail
25
25
source " ${BASH_SOURCE%/* } /util.sh"
26
26
NUM_CLUSTERS=" ${NUM_CLUSTERS:- 2} "
27
27
KIND_IMAGE=" ${KIND_IMAGE:- } "
28
- KIND_TAG=" ${KIND_TAG:- v1.19.4 @ sha256: 796d09e217d93bed01ecf8502633e48fd806fe42f9d02fdd468b81cd4e3bd40b } "
28
+ KIND_TAG=" ${KIND_TAG:- v1.21.1 @ sha256: 69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6 } "
29
29
OS=" $( uname) "
30
30
31
31
function create-clusters() {
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ mkdir -p "${dest_dir}"
36
36
37
37
# kind
38
38
platform=" $( uname -s| tr A-Z a-z) "
39
- kind_version=" v0.9.0 "
39
+ kind_version=" v0.11.1 "
40
40
kind_path=" ${dest_dir} /kind"
41
41
kind_url=" https://github.com/kubernetes-sigs/kind/releases/download/${kind_version} /kind-${platform} -amd64"
42
42
curl -fLo " ${kind_path} " " ${kind_url} " && chmod +x " ${kind_path} "
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ run-unit-tests
175
175
echo " Downloading e2e test dependencies"
176
176
./scripts/download-e2e-binaries.sh
177
177
178
- KIND_TAG=" v1.19.4 @sha256:796d09e217d93bed01ecf8502633e48fd806fe42f9d02fdd468b81cd4e3bd40b " ./scripts/create-clusters.sh
178
+ KIND_TAG=" v1.21.1 @sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6 " ./scripts/create-clusters.sh
179
179
180
180
declare -a join_cluster_list=()
181
181
if [[ -z " ${JOIN_CLUSTERS} " ]]; then
You can’t perform that action at this time.
0 commit comments