diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index bedb828a854..19d57ba85f5 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -13683,7 +13683,7 @@ "properties": { "type": { "type": "string", - "description": "Type of node condition, currently only Ready." + "description": "Type of node condition." }, "status": { "type": "string", diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 3a35e9f8516..42892763dc3 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -1457,7 +1457,7 @@ Examples:

type

-

Type of node condition, currently only Ready.

+

Type of node condition.

true

string

@@ -7145,7 +7145,7 @@ The resulting set of endpoints can be viewed as:
diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index e99db438fa4..42c2e99479e 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -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"` diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 3f748d45581..c0a4b09fc6b 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -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.",