Last active
February 7, 2024 09:08
-
-
Save superseb/a9925c465b42bc5001b94c4ec241265a to your computer and use it in GitHub Desktop.
Rancher 2.x custom cluster YAML quicker node failure detection (k8s 1.13)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
kubelet: | |
extra_args: | |
node-status-update-frequency: 4s | |
kube-api: | |
extra_args: | |
default-not-ready-toleration-seconds: 30 | |
default-unreachable-toleration-seconds: 30 | |
kube-controller: | |
extra_args: | |
node-monitor-period: 2s | |
node-monitor-grace-period: 16s | |
pod-eviction-timeout: 30s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tried on my Rancher RKE2 based cluster - can not recommend - did crash my master nodes or at least did not want to apply the settings. master nodes stuck on "waiting for kube-controller". the failed nodes told me:
EDIT: found the problem:
pod-eviction-timeout
was deprecated in 1.25 (kubernetes/website#39681).