Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ReadyScheduled to DaemonSet status #32781

Merged
merged 2 commits into from Oct 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion api/openapi-spec/root_swagger.json
Expand Up @@ -29397,7 +29397,8 @@
"required": [
"currentNumberScheduled",
"numberMisscheduled",
"desiredNumberScheduled"
"desiredNumberScheduled",
"numberReady"
],
"properties": {
"currentNumberScheduled": {
Expand All @@ -29414,6 +29415,11 @@
"description": "NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md",
"type": "integer",
"format": "int32"
},
"numberReady": {
"description": "NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
"type": "integer",
"format": "int32"
}
}
},
Expand Down
8 changes: 7 additions & 1 deletion api/openapi-spec/v1beta1.extensions.json
Expand Up @@ -7135,7 +7135,8 @@
"required": [
"currentNumberScheduled",
"numberMisscheduled",
"desiredNumberScheduled"
"desiredNumberScheduled",
"numberReady"
],
"properties": {
"currentNumberScheduled": {
Expand All @@ -7152,6 +7153,11 @@
"description": "NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md",
"type": "integer",
"format": "int32"
},
"numberReady": {
"description": "NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.",
"type": "integer",
"format": "int32"
}
}
},
Expand Down
8 changes: 7 additions & 1 deletion api/swagger-spec/extensions_v1beta1.json
Expand Up @@ -9185,7 +9185,8 @@
"required": [
"currentNumberScheduled",
"numberMisscheduled",
"desiredNumberScheduled"
"desiredNumberScheduled",
"numberReady"
],
"properties": {
"currentNumberScheduled": {
Expand All @@ -9202,6 +9203,11 @@
"type": "integer",
"format": "int32",
"description": "DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md"
},
"numberReady": {
"type": "integer",
"format": "int32",
"description": "NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready."
}
}
},
Expand Down
9 changes: 8 additions & 1 deletion docs/api-reference/extensions/v1beta1/definitions.html
Expand Up @@ -536,6 +536,13 @@ <h3 id="_v1beta1_daemonsetstatus">v1beta1.DaemonSetStatus</h3>
<td class="tableblock halign-left valign-top"><p class="tableblock">integer (int32)</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">numberReady</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.</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">integer (int32)</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>

Expand Down Expand Up @@ -6687,7 +6694,7 @@ <h3 id="_any">any</h3>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2016-10-07 14:07:17 UTC
Last updated 2016-10-12 13:31:06 UTC
</div>
</div>
</body>
Expand Down