File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 26
26
# The image must contain bash and curl. Ideally it should also contain
27
27
# the desired version of Go (currently defined in release-tools/prow.sh),
28
28
# but that just speeds up the build and is not required.
29
- - name : ' gcr.io/k8s-testimages/gcb-docker-gcloud:v20230623-56e06d7c18 '
29
+ - name : ' gcr.io/k8s-testimages/gcb-docker-gcloud:v20240718-5ef92b5c36 '
30
30
entrypoint : ./.cloudbuild.sh
31
31
env :
32
32
- GIT_TAG=${_GIT_TAG}
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ configvar CSI_PROW_SIDECAR_E2E_PATH "${CSI_PROW_SIDECAR_E2E_IMPORT_PATH}" "CSI S
243
243
# of the cluster. The alternative would have been to (cross-)compile csi-sanity
244
244
# and install it inside the cluster, which is not necessarily easier.
245
245
configvar CSI_PROW_SANITY_REPO https://github.com/kubernetes-csi/csi-test " csi-test repo"
246
- configvar CSI_PROW_SANITY_VERSION v5.2.0 " csi-test version"
246
+ configvar CSI_PROW_SANITY_VERSION v5.3.1 " csi-test version"
247
247
configvar CSI_PROW_SANITY_PACKAGE_PATH github.com/kubernetes-csi/csi-test " csi-test package"
248
248
configvar CSI_PROW_SANITY_SERVICE " hostpath-service" " Kubernetes TCP service name that exposes csi.sock"
249
249
configvar CSI_PROW_SANITY_POD " csi-hostpathplugin-0" " Kubernetes pod with CSI driver"
@@ -441,7 +441,8 @@ run_with_go () {
441
441
else
442
442
version=local
443
443
fi
444
- GOTOOLCHAIN=$version run " $@ "
444
+ # Set GOMODCACHE to make sure Kubernetes does not need to download again.
445
+ GOTOOLCHAIN=$version GOMODCACHE=" $( go env GOMODCACHE) " run " $@ "
445
446
}
446
447
447
448
# Ensure that we have the desired version of kind.
You can’t perform that action at this time.
0 commit comments