Skip to content

Commit 2a20787

Browse files
committed
chore: update version of kubectl used in tests
We want to use newer kubectl versions in general. This version is also helpful for golden tests because it prefers json over protobuf.
1 parent 9232800 commit 2a20787

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/update-golden

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd "${REPO_ROOT}"
1313
if [[ ! -f "bin/kubectl" ]]; then
1414
echo "Downloading kubectl to bin/kubectl"
1515
mkdir -p bin/
16-
curl -L -o bin/kubectl https://dl.k8s.io/release/v1.26.0/bin/linux/amd64/kubectl
16+
curl -L -o bin/kubectl https://dl.k8s.io/release/v1.32.1/bin/linux/amd64/kubectl
1717
fi
1818
chmod +x bin/kubectl
1919
export PATH="${REPO_ROOT}/bin:$PATH"

hack/ci/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ REPO_ROOT=$(pwd)
3131
if [[ ! -f "bin/kubectl" ]]; then
3232
echo "Downloading kubectl to bin/kubectl"
3333
mkdir -p bin/
34-
curl -L -o bin/kubectl https://dl.k8s.io/release/v1.27.0/bin/linux/amd64/kubectl
34+
curl -L -o bin/kubectl https://dl.k8s.io/release/v1.32.1/bin/linux/amd64/kubectl
3535
fi
3636
chmod +x bin/kubectl
3737
export PATH="${REPO_ROOT}/bin:$PATH"

0 commit comments

Comments
 (0)