Merge pull request #13727 from jiangyaoguo/fix-reason-reporting-in-kubelet

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2015-09-11 12:32:20 -07:00
12 changed files with 64 additions and 38 deletions

View File

@@ -835,8 +835,10 @@ const (
)
type ContainerStateWaiting struct {
// Reason could be pulling image,
// A brief CamelCase string indicating details about why the container is in waiting state.
Reason string `json:"reason,omitempty"`
// A human-readable message indicating details about why the container is in waiting state.
Message string `json:"message,omitempty"`
}
type ContainerStateRunning struct {