Skip to content

Commit 42798fb

Browse files
committed
update watch request limits for cluster-autoscaler-operator
this change increases the limit on the vsphere platform. it is being changed to account for an increase of watch requests on the vsphere platform. the increase in requests in associated with the organic growth of the kubernetes project and associated dependencies.
1 parent 66bd106 commit 42798fb

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

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)