From e9fc9d6fae6cc625268b777f91e0c92762ebb5d1 Mon Sep 17 00:00:00 2001 From: Mridul Gain Date: Mon, 15 Apr 2024 18:18:06 +0530 Subject: [PATCH] fix(): update KIND image version Signed-off-by: Mridul Gain --- .github/workflows/scripts/start-kind.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/start-kind.sh b/.github/workflows/scripts/start-kind.sh index d5f332b7c..37a92045b 100755 --- a/.github/workflows/scripts/start-kind.sh +++ b/.github/workflows/scripts/start-kind.sh @@ -8,7 +8,7 @@ ln -s /opt/kubectx/kubens /usr/local/bin/kubens # Create controller kind cluster if not present if [ ! $(kind get clusters | grep controller) ];then - kind create cluster --name controller --config .github/workflows/scripts/cluster.yaml --image kindest/node:v1.24.15 + kind create cluster --name controller --config .github/workflows/scripts/cluster.yaml --image kindest/node:v1.29.2 # Install Calico calico on controller-cluster echo "Installing calico on controller-cluster" @@ -70,7 +70,7 @@ fi # Create worker1 kind cluster if not present if [ ! $(kind get clusters | grep worker) ];then - kind create cluster --name worker --config .github/workflows/scripts/cluster.yaml --image kindest/node:v1.24.15 + kind create cluster --name worker --config .github/workflows/scripts/cluster.yaml --image kindest/node:v1.29.2 # Install Calico calico on worker-cluster echo "Installing calico on worker-cluster"