Skip to content

Commit

Permalink
Update kubernetes-reliability.md (#7724)
Browse files Browse the repository at this point in the history
It's a minor change, I just corrected `–` char to `-`.
  • Loading branch information
hbahadorzadeh authored Jun 21, 2021
1 parent a31baf3 commit 271be92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/kubernetes-reliability.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services so pods from failed node won't be accessible anymore.

## Fast Update and Fast Reaction

If `-node-status-update-frequency` is set to **4s** (10s is default).
If `--node-status-update-frequency` is set to **4s** (10s is default).
`--node-monitor-period` to **2s** (5s is default).
`--node-monitor-grace-period` to **20s** (40s is default).
`--default-not-ready-toleration-seconds` and ``--default-unreachable-toleration-seconds`` are set to **30**
Expand All @@ -78,7 +78,7 @@ minute which may require large etcd containers or even dedicated nodes for etcd.
## Medium Update and Average Reaction

Let's set `-node-status-update-frequency` to **20s**
Let's set `--node-status-update-frequency` to **20s**
`--node-monitor-grace-period` to **2m** and `--default-not-ready-toleration-seconds` and
``--default-unreachable-toleration-seconds`` to **60**.
In that case, Kubelet will try to update status every 20s. So, it will be 6 * 5
Expand All @@ -94,7 +94,7 @@ etcd updates per minute.
## Low Update and Slow reaction

Let's set `-node-status-update-frequency` to **1m**.
Let's set `--node-status-update-frequency` to **1m**.
`--node-monitor-grace-period` will set to **5m** and `--default-not-ready-toleration-seconds` and
``--default-unreachable-toleration-seconds`` to **60**. In this scenario, every kubelet will try to update the status
every minute. There will be 5 * 5 = 25 attempts before unhealthy status. After 5m,
Expand Down

0 comments on commit 271be92

Please sign in to comment.