123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- #!/bin/bash
- # Copyright 2014 The Kubernetes Authors.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- set -o errexit
- set -o nounset
- set -o pipefail
- KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
- source "${KUBE_ROOT}/cluster/common.sh"
- source "${KUBE_ROOT}/hack/lib/init.sh"
- # Find the ginkgo binary build as part of the release.
- ginkgo=$(kube::util::find-binary "ginkgo")
- e2e_test=$(kube::util::find-binary "e2e.test")
- # --- Setup some env vars.
- GINKGO_PARALLEL=${GINKGO_PARALLEL:-n} # set to 'y' to run tests in parallel
- # If 'y', will rerun failed tests once to give them a second chance.
- GINKGO_TOLERATE_FLAKES=${GINKGO_TOLERATE_FLAKES:-n}
- # The number of tests that can run in parallel depends on what tests
- # are running and on the size of the cluster. Too many, and tests will
- # fail due to resource contention. 25 is a reasonable default for a
- # 3-node (n1-standard-1) cluster running all fast, non-disruptive tests.
- GINKGO_PARALLELISM=${GINKGO_PARALLELISM:-25}
- : ${KUBECTL:="${KUBE_ROOT}/cluster/kubectl.sh"}
- : ${KUBE_CONFIG_FILE:="config-test.sh"}
- export KUBECTL KUBE_CONFIG_FILE
- source "${KUBE_ROOT}/cluster/kube-util.sh"
- # ---- Do cloud-provider-specific setup
- if [[ -n "${KUBERNETES_CONFORMANCE_TEST:-}" ]]; then
- echo "Conformance test: not doing test setup."
- KUBERNETES_PROVIDER="skeleton"
- detect-master-from-kubeconfig
- auth_config=(
- "--kubeconfig=${KUBECONFIG}"
- )
- else
- echo "Setting up for KUBERNETES_PROVIDER=\"${KUBERNETES_PROVIDER}\"."
- prepare-e2e
- detect-master >/dev/null
- KUBE_MASTER_URL="${KUBE_MASTER_URL:-https://${KUBE_MASTER_IP:-}}"
- auth_config=(
- "--kubeconfig=${KUBECONFIG:-$DEFAULT_KUBECONFIG}"
- )
- fi
- if [[ -n "${NODE_INSTANCE_PREFIX:-}" ]]; then
- NODE_INSTANCE_GROUP="${NODE_INSTANCE_PREFIX}-group"
- else
- NODE_INSTANCE_GROUP=""
- fi
- if [[ "${KUBERNETES_PROVIDER}" == "gce" ]]; then
- set_num_migs
- NODE_INSTANCE_GROUP=""
- for ((i=1; i<=${NUM_MIGS}; i++)); do
- if [[ $i == ${NUM_MIGS} ]]; then
- # We are assigning the same mig names as create-nodes function from cluster/gce/util.sh.
- NODE_INSTANCE_GROUP="${NODE_INSTANCE_GROUP}${NODE_INSTANCE_PREFIX}-group"
- else
- NODE_INSTANCE_GROUP="${NODE_INSTANCE_GROUP}${NODE_INSTANCE_PREFIX}-group-${i},"
- fi
- done
- fi
- if [[ "${KUBERNETES_PROVIDER}" == "gke" ]]; then
- detect-node-instance-groups
- NODE_INSTANCE_GROUP=$(kube::util::join , "${NODE_INSTANCE_GROUPS[@]}")
- fi
- ginkgo_args=()
- if [[ -n "${CONFORMANCE_TEST_SKIP_REGEX:-}" ]]; then
- ginkgo_args+=("--skip=${CONFORMANCE_TEST_SKIP_REGEX}")
- ginkgo_args+=("--seed=1436380640")
- fi
- if [[ -n "${GINKGO_PARALLEL_NODES:-}" ]]; then
- ginkgo_args+=("--nodes=${GINKGO_PARALLEL_NODES}")
- elif [[ ${GINKGO_PARALLEL} =~ ^[yY]$ ]]; then
- ginkgo_args+=("--nodes=25")
- fi
- FLAKE_ATTEMPTS=1
- if [[ "${GINKGO_TOLERATE_FLAKES}" == "y" ]]; then
- FLAKE_ATTEMPTS=2
- fi
- # The --host setting is used only when providing --auth_config
- # If --kubeconfig is used, the host to use is retrieved from the .kubeconfig
- # file and the one provided with --host is ignored.
- # Add path for things like running kubectl binary.
- export PATH=$(dirname "${e2e_test}"):"${PATH}"
- "${ginkgo}" "${ginkgo_args[@]:+${ginkgo_args[@]}}" "${e2e_test}" -- \
- "${auth_config[@]:+${auth_config[@]}}" \
- --ginkgo.flakeAttempts="${FLAKE_ATTEMPTS}" \
- --host="${KUBE_MASTER_URL}" \
- --provider="${KUBERNETES_PROVIDER}" \
- --gce-project="${PROJECT:-}" \
- --gce-zone="${ZONE:-}" \
- --gke-cluster="${CLUSTER_NAME:-}" \
- --kube-master="${KUBE_MASTER:-}" \
- --cluster-tag="${CLUSTER_ID:-}" \
- --repo-root="${KUBE_ROOT}" \
- --node-instance-group="${NODE_INSTANCE_GROUP:-}" \
- --prefix="${KUBE_GCE_INSTANCE_PREFIX:-e2e}" \
- --network="${KUBE_GCE_NETWORK:-${KUBE_GKE_NETWORK:-e2e}}" \
- ${KUBE_CONTAINER_RUNTIME:+"--container-runtime=${KUBE_CONTAINER_RUNTIME}"} \
- ${MASTER_OS_DISTRIBUTION:+"--master-os-distro=${MASTER_OS_DISTRIBUTION}"} \
- ${NODE_OS_DISTRIBUTION:+"--node-os-distro=${NODE_OS_DISTRIBUTION}"} \
- ${NUM_NODES:+"--num-nodes=${NUM_NODES}"} \
- ${E2E_CLEAN_START:+"--clean-start=true"} \
- ${E2E_MIN_STARTUP_PODS:+"--minStartupPods=${E2E_MIN_STARTUP_PODS}"} \
- ${E2E_REPORT_DIR:+"--report-dir=${E2E_REPORT_DIR}"} \
- ${E2E_REPORT_PREFIX:+"--report-prefix=${E2E_REPORT_PREFIX}"} \
- "${@:-}"
|