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

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.