mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 05:57:25 +00:00
Merge pull request #19971 from feihujiang/fixErrorCommentInNodeCondition
Fix a small error comment in nodecondition type
This commit is contained in:
commit
c6253c8d5e
@ -13683,7 +13683,7 @@
|
|||||||
"properties": {
|
"properties": {
|
||||||
"type": {
|
"type": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Type of node condition, currently only Ready."
|
"description": "Type of node condition."
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1457,7 +1457,7 @@ Examples:<br>
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
|
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
|
||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">Type of node condition, currently only Ready.</p></td>
|
<td class="tableblock halign-left valign-top"><p class="tableblock">Type of node condition.</p></td>
|
||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
|
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
|
||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
|
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
|
||||||
<td class="tableblock halign-left valign-top"></td>
|
<td class="tableblock halign-left valign-top"></td>
|
||||||
@ -7145,7 +7145,7 @@ The resulting set of endpoints can be viewed as:<br>
|
|||||||
</div>
|
</div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Last updated 2016-01-18 17:24:26 UTC
|
Last updated 2016-01-22 02:17:17 UTC
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
@ -1971,7 +1971,7 @@ const (
|
|||||||
|
|
||||||
// NodeCondition contains condition infromation for a node.
|
// NodeCondition contains condition infromation for a node.
|
||||||
type NodeCondition struct {
|
type NodeCondition struct {
|
||||||
// Type of node condition, currently only Ready.
|
// Type of node condition.
|
||||||
Type NodeConditionType `json:"type"`
|
Type NodeConditionType `json:"type"`
|
||||||
// Status of the condition, one of True, False, Unknown.
|
// Status of the condition, one of True, False, Unknown.
|
||||||
Status ConditionStatus `json:"status"`
|
Status ConditionStatus `json:"status"`
|
||||||
|
@ -701,7 +701,7 @@ func (NodeAddress) SwaggerDoc() map[string]string {
|
|||||||
|
|
||||||
var map_NodeCondition = map[string]string{
|
var map_NodeCondition = map[string]string{
|
||||||
"": "NodeCondition contains condition infromation for a node.",
|
"": "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.",
|
"status": "Status of the condition, one of True, False, Unknown.",
|
||||||
"lastHeartbeatTime": "Last time we got an update on a given condition.",
|
"lastHeartbeatTime": "Last time we got an update on a given condition.",
|
||||||
"lastTransitionTime": "Last time the condition transit from one status to another.",
|
"lastTransitionTime": "Last time the condition transit from one status to another.",
|
||||||
|
Loading…
Reference in New Issue
Block a user