Skip to content

Commit 178dea7

Browse files
committed
Remove --kube-root deprecated kind argument
The --kube-root flag has been deprecated in kind for some time and will be removed. The current equivalent functionality is to pass the path to the kubernetes source as the first non-flag argument to "build node-image". This updates the prow script to use the newer preferred method in preparation for kind dropping the flag. Signed-off-by: Sean McGinnis <[email protected]>
1 parent 75c27b7 commit 178dea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prow.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ start_cluster () {
624624
go_version="$(go_version_for_kubernetes "${CSI_PROW_WORK}/src/kubernetes" "$version")" || die "cannot proceed without knowing Go version for Kubernetes"
625625
# Changing into the Kubernetes source code directory is a workaround for https://github.com/kubernetes-sigs/kind/issues/1910
626626
# shellcheck disable=SC2046
627-
(cd "${CSI_PROW_WORK}/src/kubernetes" && run_with_go "$go_version" kind build node-image --image csiprow/node:latest --kube-root "${CSI_PROW_WORK}/src/kubernetes") || die "'kind build node-image' failed"
627+
(cd "${CSI_PROW_WORK}/src/kubernetes" && run_with_go "$go_version" kind build node-image "${CSI_PROW_WORK}/src/kubernetes" --image csiprow/node:latest) || die "'kind build node-image' failed"
628628
csi_prow_kind_have_kubernetes=true
629629
fi
630630
image="csiprow/node:latest"

0 commit comments

Comments
 (0)