Skip to content

Commit 6685c00

Browse files
committed
fix node-monitor-grace-period
1 parent e81cbfe commit 6685c00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/reference/node/node-status.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The `conditions` field describes the status of all `Running` nodes. Examples of
4343
{{< table caption = "Node conditions, and a description of when each condition applies." >}}
4444
| Node Condition | Description |
4545
|----------------------|-------------|
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) |
4747
| `DiskPressure` | `True` if pressure exists on the disk size—that is, if the disk capacity is low; otherwise `False` |
4848
| `MemoryPressure` | `True` if pressure exists on the node memory—that is, if the node memory is low; otherwise `False` |
4949
| `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
7676
[taints](/docs/concepts/scheduling-eviction/taint-and-toleration/) that match the conditions
7777
affecting the node. An example of this is when the `status` of the Ready condition
7878
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,
8080
or a `node.kubernetes.io/not-ready` taint, for a `False` status, to be added to the Node.
8181

8282
These taints affect pending pods as the scheduler takes the Node's taints into consideration when

0 commit comments

Comments
 (0)