From d07481f33425351989a91a7ab89200503829c2e2 Mon Sep 17 00:00:00 2001 From: ysicing Date: Mon, 23 Sep 2024 11:07:45 +0800 Subject: [PATCH] * [cluster] bump k3s version Signed-off-by: ysicing --- hack/scripts/getk3s.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/scripts/getk3s.sh b/hack/scripts/getk3s.sh index bb3530af..a02bbd43 100755 --- a/hack/scripts/getk3s.sh +++ b/hack/scripts/getk3s.sh @@ -8,10 +8,10 @@ set -xe if [ ! -f "hack/bin/k3s-linux-amd64" ]; then - wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.28.13%2Bk3s1/k3s + wget -O hack/bin/k3s-linux-amd64 https://github.com/k3s-io/k3s/releases/download/v1.28.14%2Bk3s1/k3s fi if [ ! -f "hack/bin/k3s-linux-arm64" ]; then - wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.28.13%2Bk3s1/k3s-arm64 + wget -O hack/bin/k3s-linux-arm64 https://github.com/k3s-io/k3s/releases/download/v1.28.14%2Bk3s1/k3s-arm64 fi chmod +x hack/bin/k3s-linux-amd64 hack/bin/k3s-linux-arm64