mirror of https://github.com/linkerd/linkerd2.git
Make uncheduble pods check warning only (#4675)
Currently commands that need access to the public api are executing the `LinkerdControlPlaneExistenceChecks` This set of checks includes one that specifically checks that there is no unscheduable pods. In fact in order to run commands like stat and edge we do not need to meet that requirement. This change relaxes all this by makind the no unschedulable pods a warning only check. Fixes #3940 Signed-off-by: Zahari Dichev zaharidichev@gmail.com
This commit is contained in:
parent
021048d576
commit
51c48694d4
|
@ -644,7 +644,7 @@ func (hc *HealthChecker) allCategories() []category {
|
|||
description: "no unschedulable pods",
|
||||
hintAnchor: "l5d-existence-unschedulable-pods",
|
||||
retryDeadline: hc.RetryDeadline,
|
||||
fatal: true,
|
||||
warning: true,
|
||||
check: func(context.Context) error {
|
||||
// do not save this into hc.controlPlanePods, as this check may
|
||||
// succeed prior to all expected control plane pods being up
|
||||
|
|
Loading…
Reference in New Issue