File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ readonly use_gke_managed_driver=${USE_GKE_MANAGED_DRIVER:-false}
24
24
readonly gke_release_channel=${GKE_RELEASE_CHANNEL:- " " }
25
25
readonly teardown_driver=${GCE_PD_TEARDOWN_DRIVER:- true}
26
26
readonly gke_node_version=${GKE_NODE_VERSION:- }
27
-
27
+ readonly run_intree_plugin_tests= ${RUN_INTREE_PLUGIN_TESTS :- false}
28
28
export GCE_PD_VERBOSITY=9
29
29
30
30
make -C " ${PKGDIR} " test-k8s-integration
@@ -33,9 +33,15 @@ base_cmd="${PKGDIR}/bin/k8s-integration-test \
33
33
--run-in-prow=true --service-account-file=${E2E_GOOGLE_APPLICATION_CREDENTIALS} \
34
34
--do-driver-build=${do_driver_build} --teardown-driver=${teardown_driver} --boskos-resource-type=${boskos_resource_type} \
35
35
--storageclass-files=sc-standard.yaml,sc-balanced.yaml,sc-ssd.yaml --snapshotclass-file=pd-volumesnapshotclass.yaml \
36
- --test-focus='External.Storage' -- deployment-strategy=${deployment_strategy} --test-version=${test_version} \
36
+ --deployment-strategy=${deployment_strategy} --test-version=${test_version} \
37
37
--num-nodes=3 --image-type=${image_type} "
38
38
39
+ if [ " $run_intree_plugin_tests " = true ]; then
40
+ base_cmd=" ${base_cmd} --test-focus='External.Storage|In-tree.*Driver.*gcepd"
41
+ else
42
+ base_cmd=" ${base_cmd} --test-focus='External.Storage"
43
+ fi
44
+
39
45
if [ " $use_gke_managed_driver " = false ]; then
40
46
base_cmd=" ${base_cmd} --deploy-overlay-name=${overlay_name} "
41
47
else
You can’t perform that action at this time.
0 commit comments