Skip to content

Commit

Permalink
Upgrade Kind to v0.20.0 (#5179)
Browse files Browse the repository at this point in the history
Upgrade Kind from v0.18.0 (K8s v1.26.3) to v0.20.0 (K8s v1.27.3)

Signed-off-by: Lan Luo <luola@vmware.com>
  • Loading branch information
luolanzone committed Jun 30, 2023
1 parent dff1efd commit 763c58e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- feature/*

env:
KIND_VERSION: v0.18.0
KIND_VERSION: v0.20.0

jobs:
check-changes:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/netpol_cyclonus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- cron: '0 0 * * *'

env:
KIND_VERSION: v0.18.0
KIND_VERSION: v0.20.0

jobs:
test-netpol-cyclonus:
Expand Down
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.18.0/kind-${os}-amd64
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.20.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.26.3/bin/${os}/amd64/kubectl
curl -LO https://dl.k8s.io/release/v1.27.3/bin/${os}/amd64/kubectl
chmod +x ./kubectl
if [[ "$WORKDIR" != "" ]];then
mv kubectl "$WORKDIR"
Expand Down

0 comments on commit 763c58e

Please sign in to comment.