summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorShelley-BaoYue <baoyue2@huawei.com>2023-09-01 10:57:19 +0800
committerShelley-BaoYue <baoyue2@huawei.com>2023-09-12 17:00:04 +0800
commit43487f9c9a898cdee5e380fd2e24411d1ec62c6b (patch)
tree7e00586ec930119fdaaa6b7ecc981ef9600ac006 /hack
parentupdate vendor for ginkgo v2 (diff)
downloadkubeedge-43487f9c9a898cdee5e380fd2e24411d1ec62c6b.tar.gz
update kind version
Signed-off-by: Shelley-BaoYue <baoyue2@huawei.com>
Diffstat (limited to 'hack')
-rwxr-xr-xhack/lib/install.sh2
-rwxr-xr-xhack/local-up-kubeedge.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/hack/lib/install.sh b/hack/lib/install.sh
index 2940f65e2..621c76c99 100755
--- a/hack/lib/install.sh
+++ b/hack/lib/install.sh
@@ -32,7 +32,7 @@ function check_kind {
command -v kind >/dev/null 2>&1
if [[ $? -ne 0 ]]; then
echo "installing kind ."
- GO111MODULE="on" go install sigs.k8s.io/kind@v0.17.0
+ GO111MODULE="on" go install sigs.k8s.io/kind@v0.18.0
if [[ $? -ne 0 ]]; then
echo "kind installed failed, exiting."
exit 1
diff --git a/hack/local-up-kubeedge.sh b/hack/local-up-kubeedge.sh
index 7e2bd6ded..f27f2ee38 100755
--- a/hack/local-up-kubeedge.sh
+++ b/hack/local-up-kubeedge.sh
@@ -21,7 +21,7 @@ LOG_LEVEL=${LOG_LEVEL:-2}
TIMEOUT=${TIMEOUT:-60}s
PROTOCOL=${PROTOCOL:-"WebSocket"}
CONTAINER_RUNTIME=${CONTAINER_RUNTIME:-"remote"}
-KIND_IMAGE=${1:-"kindest/node:v1.24.0"}
+KIND_IMAGE=${1:-"kindest/node:v1.26.0"}
echo -e "The installation of the cni plugin will overwrite the cni config file. Use export CNI_CONF_OVERWRITE=false to disable it."
if [[ "${CLUSTER_NAME}x" == "x" ]];then