From be0534e5b54f05e52c761705aeefa186a70239e6 Mon Sep 17 00:00:00 2001 From: Ryan Phillips Date: Tue, 5 Mar 2024 10:01:00 -0600 Subject: [PATCH] OCPNODE-2099: add kube-rbac-proxy toleration change sync sync --- test/extended/operators/tolerations.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/extended/operators/tolerations.go b/test/extended/operators/tolerations.go index fff3e92cae98..ffb2f6024b06 100644 --- a/test/extended/operators/tolerations.go +++ b/test/extended/operators/tolerations.go @@ -35,6 +35,10 @@ var _ = Describe("[sig-arch] Managed cluster should", func() { // The kube-apiserver proxy exists only in Hypershift. It is used to proxy the kubelet->kube-apiserver connection, hence it must be a static pod // which makes the kubelet add a keyless noExecution toleration, so we have to exclude it here. whitelistPods.Insert("kube-apiserver-proxy") + // The kube-rbac-proxy-crio pod exists in the machine config operator + // namespace. It is a static pod which makes the kubelet add a keyless + // noExecution toleration, so we have to exclude it here. + whitelistPods.Insert("kube-rbac-proxy-crio") for _, pod := range pods.Items { // exclude non-control plane namespaces if !hasPrefixSet(pod.Namespace, namespacePrefixes) {