From 1152133de1749335272adf70668cec6fe32e35fa Mon Sep 17 00:00:00 2001 From: Konstantinos Natsakis <5933427+knatsakis@users.noreply.github.com> Date: Sat, 2 Oct 2021 20:11:53 +0300 Subject: [PATCH] Node shell pods tolerate all taints (#1249) --- internal/view/exec.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/view/exec.go b/internal/view/exec.go index b477b0db..7bbeb287 100644 --- a/internal/view/exec.go +++ b/internal/view/exec.go @@ -341,6 +341,11 @@ func k9sShellPod(node string, cfg *config.ShellPod) v1.Pod { }, }, Containers: []v1.Container{c}, + Tolerations: []v1.Toleration{ + { + Operator: v1.TolerationOperator("Exists"), + }, + }, }, } }