Skip to content

Commit 0b5cea1

Browse files
authored
update from kind 0.9 to kind 0.10 (#670)
1 parent 2b6abd3 commit 0b5cea1

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

docs/k8s-kind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ operate a default cluster with two virtual worker nodes.
3636

3737
Download the latest stable release of `kind` for your platform from
3838
https://github.com/kubernetes-sigs/kind/releases. Our TravisCI testing
39-
currently uses kind v0.9.0 on an ubuntu 18.04 host.
39+
currently uses kind v0.10.0 on an ubuntu 18.04 host.
4040

4141
### Creating the Kubernetes Cluster
4242

tools/travis/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set -x
2020

2121
HELM_VERSION=v3.2.4
2222
# When changing KIND_VERSION, you must also update the case statement of KIND_NODE_TAG in start-kind.sh
23-
KIND_VERSION=v0.9.0
23+
KIND_VERSION=v0.10.0
2424
KUBECTL_VERSION=v1.18.8
2525
WSK_CLI_VERSION=latest
2626

tools/travis/start-kind.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ EOF
3030

3131
# Map from Kubernetes major versions to the kind node image tag
3232
case $TRAVIS_KUBE_VERSION in
33-
v1.14) KIND_NODE_TAG=v1.14.10@sha256:ce4355398a704fca68006f8a29f37aafb49f8fc2f64ede3ccd0d9198da910146 ;;
34-
v1.15) KIND_NODE_TAG=v1.15.12@sha256:d9b939055c1e852fe3d86955ee24976cab46cba518abcb8b13ba70917e6547a6 ;;
35-
v1.16) KIND_NODE_TAG=v1.16.15@sha256:a89c771f7de234e6547d43695c7ab047809ffc71a0c3b65aa54eda051c45ed20 ;;
36-
v1.17) KIND_NODE_TAG=v1.17.11@sha256:5240a7a2c34bf241afb54ac05669f8a46661912eab05705d660971eeb12f6555 ;;
37-
v1.18) KIND_NODE_TAG=v1.18.8@sha256:f4bcc97a0ad6e7abaf3f643d890add7efe6ee4ab90baeb374b4f41a4c95567eb ;;
38-
v1.19) KIND_NODE_TAG=v1.19.1@sha256:98cf5288864662e37115e362b23e4369c8c4a408f99cbc06e58ac30ddc721600 ;;
33+
v1.14) KIND_NODE_TAG=v1.14.10@sha256:3fbed72bcac108055e46e7b4091eb6858ad628ec51bf693c21f5ec34578f6180 ;;
34+
v1.15) KIND_NODE_TAG=v1.15.12@sha256:67181f94f0b3072fb56509107b380e38c55e23bf60e6f052fbd8052d26052fb5 ;;
35+
v1.16) KIND_NODE_TAG=v1.16.15@sha256:c10a63a5bda231c0a379bf91aebf8ad3c79146daca59db816fb963f731852a99 ;;
36+
v1.17) KIND_NODE_TAG=v1.17.17@sha256:7b6369d27eee99c7a85c48ffd60e11412dc3f373658bc59b7f4d530b7056823e ;;
37+
v1.18) KIND_NODE_TAG=v1.18.15@sha256:5c1b980c4d0e0e8e7eb9f36f7df525d079a96169c8a8f20d8bd108c0d0889cc4 ;;
38+
v1.19) KIND_NODE_TAG=v1.19.7@sha256:a70639454e97a4b733f9d9b67e12c01f6b0297449d5b9cbbef87473458e26dca ;;
39+
v1.20) KIND_NODE_TAG=v1.20.2@sha256:8f7ea6e7642c0da54f04a7ee10431549c0257315b3a634f6ef2fecaaedb19bab ;;
3940
*) echo "Unsupported Kubernetes version $TRAVIS_KUBE_VERSION"; exit 1 ;;
4041
esac
4142

0 commit comments

Comments
 (0)