You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kubernetes master changed the way that releases are tagged, which needed
changes to kind. There are 3 changes made to prow.sh:
1. Use a master commit of kind that includes the fix for Kubernetes
master.
2. Use git clone instead of git checkout (shallow) to source Kubernetes.
This lets kind correctly figure out the Kubernetes release tag.
3. Build kind with make install. The kind fix was not working correctly
when built with go build.
# whether they can run with the current cluster provider, but until
323
323
# they are, we filter them out by name. Like the other test selection
324
324
# variables, this is again a space separated list of regular expressions.
325
-
configvar CSI_PROW_E2E_SKIP 'while.kubelet.is.down.*Disruptive'"tests that need to be skipped"
325
+
configvar CSI_PROW_E2E_SKIP 'Disruptive'"tests that need to be skipped"
326
326
327
327
# This is the directory for additional result files. Usually set by Prow, but
328
328
# if not (for example, when invoking manually) it defaults to the work directory.
@@ -379,8 +379,8 @@ install_kind () {
379
379
if run curl --fail --location -o "${CSI_PROW_WORK}/bin/kind""https://github.com/kubernetes-sigs/kind/releases/download/${CSI_PROW_KIND_VERSION}/kind-linux-amd64";then
git_clone_branch https://github.com/kubernetes/kubernetes "${CSI_PROW_WORK}/src/kubernetes""$version"|| die "checking out Kubernetes $version failed"
497
+
498
+
go_version="$(go_version_for_kubernetes "${CSI_PROW_WORK}/src/kubernetes""$version")"|| die "cannot proceed without knowing Go version for Kubernetes"
0 commit comments