From d19e83c3c1ad1a073191a6a145c445f7151dd9e7 Mon Sep 17 00:00:00 2001 From: XsWack Date: Sat, 9 Sep 2017 12:08:09 +0800 Subject: [PATCH] add Node Condition Type (#5334) add Node Condition Type --- docs/concepts/architecture/nodes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/concepts/architecture/nodes.md b/docs/concepts/architecture/nodes.md index 1d361db045..43c5d722c0 100644 --- a/docs/concepts/architecture/nodes.md +++ b/docs/concepts/architecture/nodes.md @@ -51,6 +51,7 @@ The `conditions` field describes the status of all `Running` nodes. | `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 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` | +| `NetworkUnavailable` | `True` if the network for the node is not correctly configured, otherwise `False` | The node condition is represented as a JSON object. For example, the following response describes a healthy node.