Fix a small error comment in nodecondition type

This commit is contained in:
feihujiang
2016-01-22 10:21:16 +08:00
parent ca69c2e310
commit 50b6d3819f
4 changed files with 5 additions and 5 deletions

View File

@@ -1971,7 +1971,7 @@ const (
// NodeCondition contains condition infromation for a node.
type NodeCondition struct {
// Type of node condition, currently only Ready.
// Type of node condition.
Type NodeConditionType `json:"type"`
// Status of the condition, one of True, False, Unknown.
Status ConditionStatus `json:"status"`

View File

@@ -701,7 +701,7 @@ func (NodeAddress) SwaggerDoc() map[string]string {
var map_NodeCondition = map[string]string{
"": "NodeCondition contains condition infromation for a node.",
"type": "Type of node condition, currently only Ready.",
"type": "Type of node condition.",
"status": "Status of the condition, one of True, False, Unknown.",
"lastHeartbeatTime": "Last time we got an update on a given condition.",
"lastTransitionTime": "Last time the condition transit from one status to another.",