Skip to content

Commit 8a8f87f

Browse files
authored
Merge pull request #26256 from Cweiping/feature/fix_pid_pressure
fix default value of nodefs.inodesFree on linux
2 parents f1c4f60 + 6f777c9 commit 8a8f87f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

content/en/docs/tasks/administer-cluster/out-of-resource.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,10 @@ The `kubelet` has the following default hard eviction threshold:
117117

118118
* `memory.available<100Mi`
119119
* `nodefs.available<10%`
120-
* `nodefs.inodesFree<5%`
121120
* `imagefs.available<15%`
122121

122+
On a Linux node, the default value also includes `nodefs.inodesFree<5%`.
123+
123124
### Eviction Monitoring Interval
124125

125126
The `kubelet` evaluates eviction thresholds per its configured housekeeping interval.
@@ -140,6 +141,7 @@ The following node conditions are defined that correspond to the specified evict
140141
|-------------------|---------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|
141142
| `MemoryPressure` | `memory.available` | Available memory on the node has satisfied an eviction threshold |
142143
| `DiskPressure` | `nodefs.available`, `nodefs.inodesFree`, `imagefs.available`, or `imagefs.inodesFree` | Available disk space and inodes on either the node's root filesystem or image filesystem has satisfied an eviction threshold |
144+
| `PIDPressure` | `pid.available` | Available processes identifiers on the (Linux) node has fallen below an eviction threshold | |
143145

144146
The `kubelet` continues to report node status updates at the frequency specified by
145147
`--node-status-update-frequency` which defaults to `10s`.

0 commit comments

Comments
 (0)