File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ readonly teardown_driver=${GCE_PD_TEARDOWN_DRIVER:-true}
28
28
readonly gke_node_version=${GKE_NODE_VERSION:- }
29
29
readonly use_kubetest2=${USE_KUBETEST2:- true}
30
30
readonly migration_test=${MIGRATION_TEST:- false}
31
+ readonly volumeattributesclass_files=${VOLUME_ATTRIBUTES_CLASS_FILES:- hdb-volumeattributesclass.yaml}
31
32
32
33
export GCE_PD_VERBOSITY=9
33
34
@@ -48,12 +49,15 @@ base_cmd="${PKGDIR}/bin/k8s-integration-test \
48
49
--do-driver-build=${do_driver_build} --teardown-driver=${teardown_driver} \
49
50
--do-k8s-build=${do_k8s_build} --boskos-resource-type=${boskos_resource_type} \
50
51
--storageclass-files=sc-balanced.yaml --snapshotclass-files=pd-volumesnapshotclass.yaml \
51
- --volumeattributesclass-files=hdb-volumeattributesclass.yaml \
52
52
--storageclass-for-vac-file=sc-hdb.yaml \
53
53
--kube-runtime-config=api/all=true \
54
54
--deployment-strategy=${deployment_strategy} --test-version=${test_version} \
55
55
--num-nodes=3 --image-type=${image_type} --use-kubetest2=${use_kubetest2} "
56
56
57
+ if [[ -n " ${volumeattributesclass_files} " ]]; then
58
+ base_cmd+=" --volumeattributesclass-files=${volumeattributesclass_files} "
59
+ fi
60
+
57
61
if [ " $use_gke_managed_driver " = false ]; then
58
62
base_cmd=" ${base_cmd} --deploy-overlay-name=${overlay_name} "
59
63
else
You can’t perform that action at this time.
0 commit comments