fix golint for some of pkg/util

This commit is contained in:
tanshanshan
2018-09-12 15:50:22 +08:00
parent ee4346651c
commit 0ecff590bb
6 changed files with 35 additions and 38 deletions

View File

@@ -36,9 +36,11 @@ import (
)
const (
// The reason and message set on a pod when its state cannot be confirmed as kubelet is unresponsive
// NodeUnreachablePodReason is the reason on a pod when its state cannot be confirmed as kubelet is unresponsive
// on the node it is (was) running.
NodeUnreachablePodReason = "NodeLost"
// NodeUnreachablePodMessage is the message on a pod when its state cannot be confirmed as kubelet is unresponsive
// on the node it is (was) running.
NodeUnreachablePodReason = "NodeLost"
NodeUnreachablePodMessage = "Node %v which was running pod %v is unresponsive"
)