You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clearer information about the emptyDir and correction for how topologyKey works (#42780)
* removes "tmpfs is cleared on node reboot"
I believe the statement is confusing since we are in the emptyDir section of the documentation.
If a Node is restarted then all pods that resided on that node will be rescheduled onto another Node. Rescheduled pods will have an empty volume whether you choose emptyDir.medium "Memory" or not.
* removes bad comma
* improves memory limit description
Co-authored-by: Tim Bannister <[email protected]>
* removes incorrect explanation for topologyKey in an affinity or anti-affinity rule (#1)
The existing text does not make sense to me.
There is no zone "V" or "R" in the example.
I have changed the text to be consistent with top answer here which seems to make more sense: https://stackoverflow.com/questions/72240224/what-is-topologykey-in-pod-affinity
* gives more context to node label configuration
* manually wraps text and replaces absolute links with relative ones
* Update assign-pod-node.md
---------
Co-authored-by: Tim Bannister <[email protected]>
Co-authored-by: Qiming Teng <[email protected]>
Copy file name to clipboardExpand all lines: content/en/docs/concepts/scheduling-eviction/assign-pod-node.md
+23-14Lines changed: 23 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,10 @@ specific Pods:
35
35
## Node labels {#built-in-node-labels}
36
36
37
37
Like many other Kubernetes objects, nodes have
38
-
[labels](/docs/concepts/overview/working-with-objects/labels/). You can [attach labels manually](/docs/tasks/configure-pod-container/assign-pods-nodes/#add-a-label-to-a-node).
39
-
Kubernetes also populates a [standard set of labels](/docs/reference/node/node-labels/) on all nodes in a cluster.
38
+
[labels](/docs/concepts/overview/working-with-objects/labels/). You can
0 commit comments