File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed
manifests/aws-load-balancer-controller Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -1290,3 +1290,6 @@ aws_vpc_cni_custom_networking: "false"
1290
1290
aws_vpc_cni_enable_network_policy : " false"
1291
1291
# specify the network policy enforcement mode.
1292
1292
aws_vpc_cni_network_policy_enforcing_mode : " standard"
1293
+
1294
+ # aws-load-balancer-controller resource settings
1295
+ aws_load_balancer_controller_mem : " 200Mi"
Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ spec:
46
46
resources :
47
47
limits :
48
48
cpu : 100m
49
- memory : 200Mi
49
+ memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem }}
50
50
requests :
51
51
cpu : 100m
52
- memory : 200Mi
52
+ memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem }}
53
53
securityContext :
54
54
allowPrivilegeEscalation : false
55
55
readOnlyRootFilesystem : true
Original file line number Diff line number Diff line change
1
+ # {{- if eq .Cluster.Provider "zalando-eks"}}
2
+ apiVersion : autoscaling.k8s.io/v1
3
+ kind : VerticalPodAutoscaler
4
+ metadata :
5
+ name : aws-load-balancer-controller
6
+ namespace : kube-system
7
+ labels :
8
+ application : kubernetes
9
+ component : aws-load-balancer-controller
10
+ spec :
11
+ targetRef :
12
+ apiVersion : apps/v1
13
+ kind : Deployment
14
+ name : aws-load-balancer-controller
15
+ updatePolicy :
16
+ updateMode : Auto
17
+ resourcePolicy :
18
+ containerPolicies :
19
+ - containerName : controller
20
+ maxAllowed :
21
+ memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem }}
22
+ # {{- end }}
You can’t perform that action at this time.
0 commit comments