log-dump.sh: Fix kubemark log-dump.sh

Fixes #34446
pull/6/head
Zach Loafman 2016-10-12 13:47:12 -07:00
parent 049a023625
commit 98bcb69056
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ function copy-logs-from-node() {
scp -oLogLevel=quiet -oConnectTimeout=30 -oStrictHostKeyChecking=no -i "${LOG_DUMP_SSH_KEY}" "${LOG_DUMP_SSH_USER}@${node}:${scp_files}" "${dir}" > /dev/null || true
else
case "${KUBERNETES_PROVIDER}" in
gce|gke)
gce|gke|kubemark)
gcloud compute copy-files --project "${PROJECT}" --zone "${ZONE}" "${node}:${scp_files}" "${dir}" > /dev/null || true
;;
aws)
@ -120,7 +120,7 @@ function save-logs() {
fi
else
case "${KUBERNETES_PROVIDER}" in
gce|gke)
gce|gke|kubemark)
files="${files} ${gce_logfiles}"
;;
aws)