File tree 2 files changed +9
-13
lines changed
2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -55,18 +55,12 @@ spec:
55
55
app: operator-istio-gateway
56
56
istio: ingressgateway-operator
57
57
ports:
58
- - name: status-port # should be first in the list, see https://github.com/istio/istio/issues/12503
59
- port: 15021
60
- targetPort: 15021
61
58
- name: http2
62
59
port: 80
63
60
targetPort: 80
64
61
- name: https
65
62
port: 443
66
63
targetPort: 443
67
- - name: tls # used for SNI
68
- port: 15443
69
- targetPort: 15443
70
64
resources:
71
65
requests:
72
66
cpu: 100m
@@ -114,18 +108,12 @@ spec:
114
108
app: apis-istio-gateway
115
109
istio: ingressgateway-apis
116
110
ports:
117
- - name: status-port # should be first in the list, see https://github.com/istio/istio/issues/12503
118
- port: 15021
119
- targetPort: 15021
120
111
- name: http2
121
112
port: 80
122
113
targetPort: 80
123
114
- name: https
124
115
port: 443
125
116
targetPort: 443
126
- - name: tls # used for SNI
127
- port: 15443
128
- targetPort: 15443
129
117
resources:
130
118
requests:
131
119
cpu: 400m
Original file line number Diff line number Diff line change @@ -48,8 +48,16 @@ import (
48
48
const (
49
49
// MaxNodeGroups represents the max number of node groups in a cluster
50
50
MaxNodeGroups = 100
51
+
51
52
// MaxNodesToAddOnClusterUp represents the max number of nodes to add on cluster up
52
- MaxNodesToAddOnClusterUp = 250
53
+ // Limited to 200 nodes (rounded down from 248 nodes) for two reasons:
54
+ //
55
+ // * To prevent overloading the API servers when the nodes are being added.
56
+ //
57
+ // * To prevent hitting the 500 targets per LB (when the cross-load balancing is enabled) limit (quota code L-B211E961);
58
+ // 500 divided by 2 target listeners - 1 operator node - 1 prometheus node => 248
59
+ MaxNodesToAddOnClusterUp = 200
60
+
53
61
// MaxNodesToAddOnClusterConfigure represents the max number of nodes to add on cluster up/configure
54
62
MaxNodesToAddOnClusterConfigure = 100
55
63
// ClusterNameTag is the tag used for storing a cluster's name in AWS resources
You can’t perform that action at this time.
0 commit comments