Skip to content

Commit

Permalink
Upgrade Kind to v0.22.0 to support K8s 1.29 (#6158)
Browse files Browse the repository at this point in the history
Signed-off-by: Lan Luo <[email protected]>
  • Loading branch information
luolanzone committed Mar 28, 2024
1 parent fcfbe9d commit 1be77c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/kind/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.20.0
v0.22.0
4 changes: 2 additions & 2 deletions multicluster/hack/verify-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ WORKDIR=$1
os=$(echo $(uname) | tr '[:upper:]' '[:lower:]')
if ! which kind > /dev/null; then
if [[ ${os} == 'darwin' || ${os} == 'linux' ]]; then
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.20.0/kind-${os}-amd64
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.22.0/kind-${os}-amd64
chmod +x ./kind
if [[ "$WORKDIR" != "" ]];then
mv kind "$WORKDIR"
Expand All @@ -34,7 +34,7 @@ fi

if ! which kubectl > /dev/null; then
if [[ ${os} == 'darwin' || ${os} == 'linux' ]]; then
curl -LO https://dl.k8s.io/release/v1.27.3/bin/${os}/amd64/kubectl
curl -LO https://dl.k8s.io/release/v1.29.2/bin/${os}/amd64/kubectl
chmod +x ./kubectl
if [[ "$WORKDIR" != "" ]];then
mv kubectl "$WORKDIR"
Expand Down

0 comments on commit 1be77c0

Please sign in to comment.