Node shell pods tolerate all taints (#1249)

mine
Konstantinos Natsakis 2021-10-02 20:11:53 +03:00 committed by GitHub
parent 9a455438d1
commit 1152133de1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -341,6 +341,11 @@ func k9sShellPod(node string, cfg *config.ShellPod) v1.Pod {
},
},
Containers: []v1.Container{c},
Tolerations: []v1.Toleration{
{
Operator: v1.TolerationOperator("Exists"),
},
},
},
}
}