Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down