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
Copy file name to clipboardExpand all lines: content/en/docs/reference/node/node-status.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ The `conditions` field describes the status of all `Running` nodes. Examples of
43
43
{{< table caption = "Node conditions, and a description of when each condition applies." >}}
44
44
| Node Condition | Description |
45
45
|----------------------|-------------|
46
-
|`Ready`|`True` if the node is healthy and ready to accept pods, `False` if the node is not healthy and is not accepting pods, and `Unknown` if the node controller has not heard from the node in the last `node-monitor-grace-period` (default is 40 seconds) |
46
+
|`Ready`|`True` if the node is healthy and ready to accept pods, `False` if the node is not healthy and is not accepting pods, and `Unknown` if the node controller has not heard from the node in the last `node-monitor-grace-period` (default is 50 seconds) |
47
47
|`DiskPressure`|`True` if pressure exists on the disk size—that is, if the disk capacity is low; otherwise `False`|
48
48
|`MemoryPressure`|`True` if pressure exists on the node memory—that is, if the node memory is low; otherwise `False`|
49
49
|`PIDPressure`|`True` if pressure exists on the processes—that is, if there are too many processes on the node; otherwise `False`|
@@ -76,7 +76,7 @@ When problems occur on nodes, the Kubernetes control plane automatically creates
76
76
[taints](/docs/concepts/scheduling-eviction/taint-and-toleration/) that match the conditions
77
77
affecting the node. An example of this is when the `status` of the Ready condition
78
78
remains `Unknown` or `False` for longer than the kube-controller-manager's `NodeMonitorGracePeriod`,
79
-
which defaults to 40 seconds. This will cause either an `node.kubernetes.io/unreachable` taint, for an `Unknown` status,
79
+
which defaults to 50 seconds. This will cause either an `node.kubernetes.io/unreachable` taint, for an `Unknown` status,
80
80
or a `node.kubernetes.io/not-ready` taint, for a `False` status, to be added to the Node.
81
81
82
82
These taints affect pending pods as the scheduler takes the Node's taints into consideration when
0 commit comments