File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,14 @@ configvar CSI_PROW_E2E_ALPHA_GATES_LATEST 'GenericEphemeralVolume=true,CSIStorag
330
330
configvar CSI_PROW_E2E_ALPHA_GATES " $( get_versioned_variable CSI_PROW_E2E_ALPHA_GATES " ${csi_prow_kubernetes_version_suffix} " ) " " alpha E2E feature gates"
331
331
332
332
# Which external-snapshotter tag to use for the snapshotter CRD and snapshot-controller deployment
333
- configvar CSI_SNAPSHOTTER_VERSION ' v3.0.0' " external-snapshotter version tag"
333
+ default_csi_snapshotter_version () {
334
+ if [ " ${CSI_PROW_KUBERNETES_VERSION} " = " latest" ] || [ " ${CSI_PROW_DRIVER_CANARY} " == " canary" ]; then
335
+ echo " master"
336
+ else
337
+ echo " v3.0.2"
338
+ fi
339
+ }
340
+ configvar CSI_SNAPSHOTTER_VERSION " $( default_csi_snapshotter_version) " " external-snapshotter version tag"
334
341
335
342
# Some tests are known to be unusable in a KinD cluster. For example,
336
343
# stopping kubelet with "ssh <node IP> systemctl stop kubelet" simply
You can’t perform that action at this time.
0 commit comments