-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-k8s-integration-ci.sh
executable file
·94 lines (78 loc) · 3.44 KB
/
run-k8s-integration-ci.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/bash
# Optional environment variables
# GCE_PD_OVERLAY_NAME: which Kustomize overlay to deploy with
# GCE_PD_DO_DRIVER_BUILD: if set, don't build the driver from source and just
# use the driver version from the overlay
# GCE_PD_BOSKOS_RESOURCE_TYPE: name of the boskos resource type to reserve
set -o nounset
set -o errexit
readonly PKGDIR=${GOPATH}/src/sigs.k8s.io/gcp-compute-persistent-disk-csi-driver
readonly overlay_name="${GCE_PD_OVERLAY_NAME:-stable-master}"
readonly boskos_resource_type="${GCE_PD_BOSKOS_RESOURCE_TYPE:-gce-project}"
readonly do_driver_build="${GCE_PD_DO_DRIVER_BUILD:-true}"
readonly deployment_strategy=${DEPLOYMENT_STRATEGY:-gce}
readonly gke_cluster_version=${GKE_CLUSTER_VERSION:-latest}
readonly kube_version=${GCE_PD_KUBE_VERSION:-master}
readonly test_version=${TEST_VERSION:-master}
readonly gce_zone=${GCE_CLUSTER_ZONE:-us-central1-b}
readonly gce_region=${GCE_CLUSTER_REGION:-}
readonly image_type=${IMAGE_TYPE:-cos}
readonly use_gke_managed_driver=${USE_GKE_MANAGED_DRIVER:-false}
readonly gke_release_channel=${GKE_RELEASE_CHANNEL:-""}
readonly teardown_driver=${GCE_PD_TEARDOWN_DRIVER:-true}
readonly gke_node_version=${GKE_NODE_VERSION:-}
readonly run_intree_plugin_tests=${RUN_INTREE_PLUGIN_TESTS:-false}
readonly use_kubetest2=${USE_KUBETEST2:-false}
readonly test_pd_labels=${TEST_PD_LABELS:-true}
storage_classes=sc-balanced.yaml,sc-ssd.yaml
if [[ $test_pd_labels = true ]] ; then
storage_classes=${storage_classes},sc-standard.yaml
else
storage_classes=${storage_classes},sc-standard-no-labels.yaml
fi
if [[ -n $gce_region ]] ; then
storage_classes="${storage_classes}",sc-regional.yaml
fi
export GCE_PD_VERBOSITY=9
make -C "${PKGDIR}" test-k8s-integration
if [ "$use_kubetest2" = true ]; then
export GO111MODULE=on;
go get sigs.k8s.io/kubetest2@latest;
go get sigs.k8s.io/kubetest2/kubetest2-gce@latest;
go get sigs.k8s.io/kubetest2/kubetest2-gke@latest;
go get sigs.k8s.io/kubetest2/kubetest2-tester-ginkgo@latest;
fi
base_cmd="${PKGDIR}/bin/k8s-integration-test \
--run-in-prow=true --service-account-file=${E2E_GOOGLE_APPLICATION_CREDENTIALS} \
--do-driver-build=${do_driver_build} --teardown-driver=${teardown_driver} --boskos-resource-type=${boskos_resource_type} \
--storageclass-files="${storage_classes}" --snapshotclass-file=pd-volumesnapshotclass.yaml \
--deployment-strategy=${deployment_strategy} --test-version=${test_version} \
--num-nodes=3 --image-type=${image_type} --use-kubetest2=${use_kubetest2}"
if [ "$run_intree_plugin_tests" = true ]; then
base_cmd="${base_cmd} --test-focus='External.Storage|In-tree.*Driver.*gcepd'"
else
base_cmd="${base_cmd} --test-focus='External.Storage'"
fi
if [ "$use_gke_managed_driver" = false ]; then
base_cmd="${base_cmd} --deploy-overlay-name=${overlay_name}"
else
base_cmd="${base_cmd} --use-gke-managed-driver=${use_gke_managed_driver}"
fi
if [ "$deployment_strategy" = "gke" ]; then
if [ "$gke_release_channel" ]; then
base_cmd="${base_cmd} --gke-release-channel=${gke_release_channel}"
else
base_cmd="${base_cmd} --gke-cluster-version=${gke_cluster_version}"
fi
else
base_cmd="${base_cmd} --kube-version=${kube_version}"
fi
if [ -z "$gce_region" ]; then
base_cmd="${base_cmd} --gce-zone=${gce_zone}"
else
base_cmd="${base_cmd} --gce-region=${gce_region}"
fi
if [ -n "$gke_node_version" ]; then
base_cmd="${base_cmd} --gke-node-version=${gke_node_version}"
fi
eval "$base_cmd"