Merge pull request #71297 from Pingan2017/event-kill-container

correct the event msg of kill container
This commit is contained in:
Kubernetes Prow Robot 2018-12-13 18:18:58 -08:00 committed by GitHub
commit 61ed586bb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -584,7 +584,7 @@ func (m *kubeGenericRuntimeManager) killContainer(pod *v1.Pod, containerID kubec
klog.V(3).Infof("Container %q exited normally", containerID.String())
}
message := fmt.Sprintf("Killing container with id %s", containerID.String())
message := fmt.Sprintf("Killing container %s", containerID.String())
if reason != "" {
message = fmt.Sprint(message, ":", reason)
}