Skip to content

Commit

Permalink
log-dump.sh: Fix kubemark log-dump.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
zmerlynn committed Oct 12, 2016
1 parent 049a023 commit 98bcb69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster/log-dump.sh
Expand Up @@ -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)
Expand All @@ -120,7 +120,7 @@ function save-logs() {
fi
else
case "${KUBERNETES_PROVIDER}" in
gce|gke)
gce|gke|kubemark)
files="${files} ${gce_logfiles}"
;;
aws)
Expand Down

0 comments on commit 98bcb69

Please sign in to comment.