@@ -10,7 +10,6 @@ set -o nounset
10
10
set -o errexit
11
11
12
12
export GCE_PD_VERBOSITY=9
13
-
14
13
readonly PKGDIR=${GOPATH} /src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
15
14
16
15
readonly overlay_name=" ${GCE_PD_OVERLAY_NAME:- stable} "
@@ -19,21 +18,23 @@ readonly do_driver_build="${GCE_PD_DO_DRIVER_BUILD:-true}"
19
18
readonly deployment_strategy=${DEPLOYMENT_STRATEGY:- gce}
20
19
readonly kube_version=${GCE_PD_KUBE_VERSION:- master}
21
20
readonly test_version=${TEST_VERSION:- master}
21
+ readonly gce_zone=${GCE_CLUSTER_ZONE:- us-central1-b}
22
+ readonly feature_gates=" CSIMigration=true,CSIMigrationGCE=true,ExpandCSIVolumes=true"
22
23
23
24
readonly GCE_PD_TEST_FOCUS=" PersistentVolumes\sGCEPD|[V|v]olume\sexpand|\[sig-storage\]\sIn-tree\sVolumes\s\[Driver:\swindows-gcepd\]|allowedTopologies|Pod\sDisks|PersistentVolumes\sDefault"
24
25
25
26
# TODO(#167): Enable reconstructions tests
26
27
27
28
make -C " ${PKGDIR} " test-k8s-integration
28
29
29
- base_cmd= " ${PKGDIR} /bin/k8s-integration-test \
30
+ ${PKGDIR} /bin/k8s-integration-test \
30
31
--platform=windows --bringup-cluster=false --teardown-cluster=false \
31
- --run-in-prow=true
32
- --kube-feature-gates=" CSIMigration=true,CSIMigrationGCE=true,ExpandCSIVolumes=true " --run-in-prow=true \
33
- --deploy-overlay-name=" ${overlay_name} " --service-account-file=" ${E2E_GOOGLE_APPLICATION_CREDENTIALS} " \
34
- --do-driver-build=" ${do_driver_build} " --boskos-resource-type=" ${boskos_resource_type} " \
35
- --migration-test=true --test-focus=" ${GCE_PD_TEST_FOCUS} " \
36
- --gce-zone=" us-central1-b " --deployment-strategy=" ${deployment_strategy} " --test-version=" ${test_version} " "
37
-
38
- eval " $base_cmd "
32
+ --run-in-prow=true \
33
+ --kube-feature-gates=${feature_gates} --run-in-prow=true \
34
+ --deploy-overlay-name=${overlay_name} --service-account-file=${E2E_GOOGLE_APPLICATION_CREDENTIALS} \
35
+ --do-driver-build=${do_driver_build} --boskos-resource-type=${boskos_resource_type} \
36
+ --migration-test=true --test-focus=${GCE_PD_TEST_FOCUS} \
37
+ --gce-zone=${gce_zone} --deployment-strategy=${deployment_strategy} --test-version=${test_version}
38
+
39
+ # eval "$base_cmd"
39
40
0 commit comments