From 28939a8eaee83ddde7f3eef3db24f2351db7d099 Mon Sep 17 00:00:00 2001 From: JENNIFER RONDEAU Date: Mon, 24 Jul 2017 10:33:42 -0400 Subject: [PATCH] fix memorypressue and diskpressure descriptions --- docs/concepts/architecture/nodes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/architecture/nodes.md b/docs/concepts/architecture/nodes.md index dcf78ca4c7..a66d6fd7d4 100644 --- a/docs/concepts/architecture/nodes.md +++ b/docs/concepts/architecture/nodes.md @@ -49,8 +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` | +| `MemoryPressure` | `True` if pressure exists on the node memory -- that is, if the node memory is low; otherwise `False` | +| `DiskPressure` | `True` if pressure exists on the disk size -- that is, if the disk capacity is low; otherwise `False` | The node condition is represented as a JSON object. For example, the following response describes a healthy node.