Merge pull request #95411 from MHBauer/log-containerd

always collect containerd logs during e2e-node tests
This commit is contained in:
Kubernetes Prow Robot 2020-10-28 16:16:59 -07:00 committed by GitHub
commit 1a37266208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,6 +79,11 @@ var requiredLogs = []LogFileData{
Files: []string{"/var/log/docker.log", "/var/log/upstart/docker.log"},
JournalctlCommand: []string{"-u", "docker"},
},
{
Name: "containerd.log",
Files: []string{"/var/log/containerd.log"},
JournalctlCommand: []string{"-u", "containerd"},
},
}
// getLogFiles get all logs to collect after the test.