Merge pull request #32879 from wojtek-t/copy_logs_rotated

Automatic merge from submit-queue

Copy rotated logs in e2e tests

@gmarek - FYI
pull/6/head
Kubernetes Submit Queue 2016-09-16 12:10:22 -07:00 committed by GitHub
commit 32ba5815ee
1 changed files with 4 additions and 2 deletions

View File

@ -37,8 +37,10 @@ function copy-logs-from-node() {
local -r node="${1}"
local -r dir="${2}"
local files=(${3})
# Append ".log"
files=("${files[@]/%/.log}")
# Append ".log*"
# The * at the end is needed to also copy rotated logs (which happens
# in large clusters and long runs).
files=("${files[@]/%/.log*}")
# Prepend "/var/log/"
files=("${files[@]/#/\/var\/log\/}")
# Replace spaces with commas, surround with braces