Skip to content

Commit

Permalink
Merge pull request #28480 from wking/ingress-unavailable-exception
Browse files Browse the repository at this point in the history
OCPBUGS-27341: pkg/monitortests/clusterversionoperator: Add an exception for ingress going Available=False on IngressUnavailable
  • Loading branch information
openshift-merge-bot[bot] committed Jan 18, 2024
2 parents eaa0ccd + bdb42ba commit 5d7702e
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -67,6 +67,10 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals) []*junitap
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse && condition.Reason == "UnavailableReplicas" {
return "https://issues.redhat.com/browse/OCPBUGS-20061", nil
}
case "ingress":
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse && condition.Reason == "IngressUnavailable" {
return "https://issues.redhat.com/browse/OCPBUGS-25739", nil
}
case "kube-storage-version-migrator":
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse && condition.Reason == "KubeStorageVersionMigrator_Deploying" {
return "https://issues.redhat.com/browse/OCPBUGS-20062", nil
Expand Down

0 comments on commit 5d7702e

Please sign in to comment.