Skip to content

Commit b9c7edd

Browse files
Merge pull request #30656 from elmiko/ocpbugs-69676
OCPBUGS-69676: update watch request limits for cluster-autoscaler-operator
2 parents cbdbfe3 + 42798fb commit b9c7edd

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

pkg/monitortests/kubeapiserver/auditloganalyzer/handle_operator_watch_count_tracking.go

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ package auditloganalyzer
33
import (
44
"context"
55
"fmt"
6+
"math"
7+
"path/filepath"
8+
"sort"
9+
"strconv"
10+
"strings"
11+
"sync"
12+
"time"
13+
614
configv1 "github.com/openshift/api/config/v1"
715
"github.com/openshift/origin/pkg/dataloader"
816
"github.com/openshift/origin/pkg/test/ginkgo/junitapi"
@@ -11,13 +19,6 @@ import (
1119
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1220
auditv1 "k8s.io/apiserver/pkg/apis/audit/v1"
1321
"k8s.io/kubernetes/test/e2e/framework"
14-
"math"
15-
"path/filepath"
16-
"sort"
17-
"strconv"
18-
"strings"
19-
"sync"
20-
"time"
2122
)
2223

2324
// with https://github.com/openshift/kubernetes/pull/2113 we no longer have the counts used in
@@ -295,7 +296,7 @@ func (s *watchCountTracking) CreateJunits() ([]*junitapi.JUnitTestCase, error) {
295296
configv1.VSpherePlatformType: {
296297
"authentication-operator": 311.0,
297298
"cloud-credential-operator": 71.0,
298-
"cluster-autoscaler-operator": 49.0,
299+
"cluster-autoscaler-operator": 56.0,
299300
"cluster-baremetal-operator": 125.0,
300301
"cluster-image-registry-operator": 106.0,
301302
"cluster-monitoring-operator": 189.0,

0 commit comments

Comments
 (0)