Skip to content

Commit 2fbb0fe

Browse files
committed
disable PodSecurity featuregate
Signed-off-by: Humble Chirammal <[email protected]>
1 parent e2030a6 commit 2fbb0fe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.prow.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# Only these tests make sense for csi-driver-nfs until we can integrate k/k
2020
# e2es.
2121
: ${CSI_PROW_TESTS:="unit"}
22+
: ${CSI_PROW_E2E_GATES[_LATEST]:="GenericEphemeralVolume=true,CSIStorageCapacity=true,PodSecurity=false"}
2223

2324
. release-tools/prow.sh
2425

release-tools/prow.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,8 +1253,9 @@ main () {
12531253
focus="($focus|CSI.mock.volume)"
12541254
fi
12551255
1256-
if tests_need_non_alpha_cluster; then
1257-
start_cluster || die "starting the non-alpha cluster failed"
1256+
if tests_need_non_alpha_cluster && [ "${CSI_PROW_E2E_GATES[_LATEST]}" ]; then
1257+
# Need to (re)create the cluster.
1258+
start_cluster "${CSI_PROW_E2E_GATES[_LATEST]}" || die "starting non alpha cluster failed"
12581259
12591260
# Install necessary snapshot CRDs and snapshot controller
12601261
install_snapshot_crds

0 commit comments

Comments
 (0)