@@ -10,7 +10,7 @@ set -o nounset
10
10
set -o errexit
11
11
12
12
export GCE_PD_VERBOSITY=9
13
-
13
+ E2E_GOOGLE_APPLICATION_CREDENTIALS=/usr/local/google/home/jinxu/Work/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/deploy/credentials/cloud-sa.json
14
14
readonly PKGDIR=${GOPATH} /src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
15
15
16
16
readonly overlay_name=" ${GCE_PD_OVERLAY_NAME:- stable} "
@@ -19,21 +19,23 @@ readonly do_driver_build="${GCE_PD_DO_DRIVER_BUILD:-true}"
19
19
readonly deployment_strategy=${DEPLOYMENT_STRATEGY:- gce}
20
20
readonly kube_version=${GCE_PD_KUBE_VERSION:- master}
21
21
readonly test_version=${TEST_VERSION:- master}
22
+ readonly gce_zone=${GCE_CLUSTER_ZONE:- us-central1-b}
23
+ readonly feature_gates=" CSIMigration=true,CSIMigrationGCE=true,ExpandCSIVolumes=true"
22
24
23
25
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
26
25
27
# TODO(#167): Enable reconstructions tests
26
28
27
29
make -C " ${PKGDIR} " test-k8s-integration
28
30
29
- base_cmd= " ${PKGDIR} /bin/k8s-integration-test \
31
+ ${PKGDIR} /bin/k8s-integration-test \
30
32
--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 "
33
+ --run-in-prow=true \
34
+ --kube-feature-gates=${feature_gates} --run-in-prow=true \
35
+ --deploy-overlay-name=${overlay_name} --service-account-file=${E2E_GOOGLE_APPLICATION_CREDENTIALS} \
36
+ --do-driver-build=${do_driver_build} --boskos-resource-type=${boskos_resource_type} \
37
+ --migration-test=true --test-focus=${GCE_PD_TEST_FOCUS} \
38
+ --gce-zone=${gce_zone} --deployment-strategy=${deployment_strategy} --test-version=${test_version}
39
+
40
+ # eval "$base_cmd"
39
41
0 commit comments