Commit c8faf0b1 authored by Joe Finney's avatar Joe Finney

Clean up e2e logs.

Unsets xtrace in e2e.sh, sets it in e2e-runner.sh. Sets quiet flag for gcloud cp.
parent 4606171a
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
set -o errexit set -o errexit
set -o nounset set -o nounset
set -o pipefail set -o pipefail
set -o xtrace
echo "--------------------------------------------------------------------------------" echo "--------------------------------------------------------------------------------"
echo "Test Environment:" echo "Test Environment:"
...@@ -67,7 +68,10 @@ if [[ "${E2E_UP,,}" == "true" || "${JENKINS_FORCE_GET_TARS:-}" =~ ^[yY]$ ]]; the ...@@ -67,7 +68,10 @@ if [[ "${E2E_UP,,}" == "true" || "${JENKINS_FORCE_GET_TARS:-}" =~ ^[yY]$ ]]; the
# At this point, we want to have the following vars set: # At this point, we want to have the following vars set:
# - bucket # - bucket
# - build_version # - build_version
gsutil -m cp gs://kubernetes-release/${bucket}/${build_version}/kubernetes.tar.gz gs://kubernetes-release/${bucket}/${build_version}/kubernetes-test.tar.gz . gsutil -mq cp \
"gs://kubernetes-release/${bucket}/${build_version}/kubernetes.tar.gz" \
"gs://kubernetes-release/${bucket}/${build_version}/kubernetes-test.tar.gz" \
.
# Set by GKE-CI to change the CLUSTER_API_VERSION to the git version # Set by GKE-CI to change the CLUSTER_API_VERSION to the git version
if [[ ! -z ${E2E_SET_CLUSTER_API_VERSION:-} ]]; then if [[ ! -z ${E2E_SET_CLUSTER_API_VERSION:-} ]]; then
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
set -o errexit set -o errexit
set -o nounset set -o nounset
set -o pipefail set -o pipefail
set -o xtrace
# Join all args with | # Join all args with |
# Example: join_regex_allow_empty a b "c d" e => a|b|c d|e # Example: join_regex_allow_empty a b "c d" e => a|b|c d|e
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment