From 0a1759001497f64f8df0d44705cf0eb1024e3f2c Mon Sep 17 00:00:00 2001 From: Zhang Yong Date: Sun, 28 Mar 2021 10:40:20 +0800 Subject: [PATCH] Fix line separation in concepts/architecture/nodes --- content/zh/docs/concepts/architecture/nodes.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/content/zh/docs/concepts/architecture/nodes.md b/content/zh/docs/concepts/architecture/nodes.md index 908b8ddde6..8536916268 100644 --- a/content/zh/docs/concepts/architecture/nodes.md +++ b/content/zh/docs/concepts/architecture/nodes.md @@ -432,14 +432,16 @@ ConditionUnknown when a node becomes unreachable (i.e. the node controller stops receiving heartbeats for some reason, e.g. due to the node being down), and then later evicting all the pods from the node (using graceful termination) if the node continues to be unreachable. (The default timeouts are 40s to start reporting -ConditionUnknown and 5m after that to start evicting pods.) The node controller -checks the state of each node every `-node-monitor-period` seconds. +ConditionUnknown and 5m after that to start evicting pods.) + +The node controller checks the state of each node every `-node-monitor-period` seconds. --> 第三个是监控节点的健康情况。节点控制器负责在节点不可达 (即,节点控制器因为某些原因没有收到心跳,例如节点宕机)时, 将节点状态的 `NodeReady` 状况更新为 "`Unknown`"。 如果节点接下来持续处于不可达状态,节点控制器将逐出节点上的所有 Pod(使用体面终止)。 默认情况下 40 秒后开始报告 "`Unknown`",在那之后 5 分钟开始逐出 Pod。 + 节点控制器每隔 `--node-monitor-period` 秒检查每个节点的状态。