Skip to content

Commit 0f44179

Browse files
Merge pull request #31209 from gangwgr/fix-kms-scaling-threshold
CNTRLPLANE-3238: pathological events: bump KMS ScalingReplicaSet threshold to 120
2 parents 355916d + cf9ccf9 commit 0f44179

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ func kmsEncryptionTestsDetected(finalIntervals monitorapi.Intervals) bool {
13921392
// in openshift-apiserver and openshift-oauth-apiserver during KMS encryption tests.
13931393
// KMS encryption tests trigger multiple kube-apiserver rollouts (encrypt/decrypt cycles)
13941394
// that cascade into these namespaces, generating ScalingReplicaSet events.
1395-
// Observed: 58-82 times per run; threshold set to 100 with headroom.
1395+
// Observed: 58-106 times per run; threshold set to 120 with headroom.
13961396
func newKMSEncryptionTestScalingReplicaSetMatcher() EventMatcher {
13971397
return &SimplePathologicalEventMatcher{
13981398
name: "APIServerScalingReplicaSetDuringKMSEncryption",
@@ -1401,7 +1401,7 @@ func newKMSEncryptionTestScalingReplicaSetMatcher() EventMatcher {
14011401
monitorapi.LocatorDeploymentKey: regexp.MustCompile(`^apiserver$`),
14021402
},
14031403
messageReasonRegex: regexp.MustCompile(`^ScalingReplicaSet$`),
1404-
repeatThresholdOverride: 100,
1404+
repeatThresholdOverride: 120,
14051405
}
14061406
}
14071407

0 commit comments

Comments
 (0)