From 4b215d8f0bca0b217a7ad01e2f66c3f53306afef Mon Sep 17 00:00:00 2001 From: Evan Hearne Date: Tue, 6 Jan 2026 13:16:32 +0000 Subject: [PATCH] add exceptions found post merge --- .../monitortest.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkg/monitortests/authentication/nodefaultserviceaccountoperatortests/monitortest.go b/pkg/monitortests/authentication/nodefaultserviceaccountoperatortests/monitortest.go index d39ffbfe2430..dfaca210f082 100644 --- a/pkg/monitortests/authentication/nodefaultserviceaccountoperatortests/monitortest.go +++ b/pkg/monitortests/authentication/nodefaultserviceaccountoperatortests/monitortest.go @@ -75,6 +75,18 @@ var exceptions = []func(pod corev1.Pod) (string, bool){ } return "", false }, + + // These exceptions were found after the monitor test was merged. + exceptionWithJira("openshift-cnv/kubevirt-apiserver-proxy-", "https://issues.redhat.com/browse/OCPBUGS-70353"), + exceptionWithJira("openshift-cnv/kubevirt-console-plugin-", "https://issues.redhat.com/browse/OCPBUGS-70353"), + exceptionWithJira("kube-system/global-pull-secret-syncer-", "https://issues.redhat.com/browse/OCPBUGS-70354"), + // Handle the outlier (Namespace only check) manually + func(pod corev1.Pod) (string, bool) { + if pod.Namespace == "openshift-cluster-csi-drivers" { + return "https://issues.redhat.com/browse/OCPBUGS-70355", true + } + return "", false + }, } // generateTestCases evaluates that no pods in the provided namespace are using the default service account.