From 34cd28dbf622a30147f66e942e5aabeb605873a7 Mon Sep 17 00:00:00 2001 From: houjun Date: Wed, 5 Apr 2017 11:50:15 +0800 Subject: [PATCH] Node conditions should contain MemoryPressure and DiskPressure Node conditions should also contain MemoryPressure and DiskPressure. --- docs/concepts/nodes/node.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/concepts/nodes/node.md b/docs/concepts/nodes/node.md index 10bbb1ad1d..3493ae7194 100644 --- a/docs/concepts/nodes/node.md +++ b/docs/concepts/nodes/node.md @@ -49,6 +49,8 @@ The `conditions` field describes the status of all `Running` nodes. |----------------|-------------| | `OutOfDisk` | `True` if there is insufficient free space on the node for adding new pods, otherwise `False` | | `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 40 seconds | +| `MemoryPressure` | `True` if node has no memory pressure, otherwise `False` | +| `DiskPressure` | `True` if node has no disk pressure, otherwise `False` | The node condition is represented as a JSON object. For example, the following response describes a healthy node.