File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
manifests/aws-load-balancer-controller Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1299,4 +1299,5 @@ aws_vpc_cni_enable_network_policy: "false"
1299
1299
aws_vpc_cni_network_policy_enforcing_mode : " standard"
1300
1300
1301
1301
# aws-load-balancer-controller resource settings
1302
- aws_load_balancer_controller_mem : " 200Mi"
1302
+ aws_load_balancer_controller_cpu : " 100m"
1303
+ aws_load_balancer_controller_mem_max : " 4Gi"
Original file line number Diff line number Diff line change @@ -45,11 +45,11 @@ spec:
45
45
protocol : TCP
46
46
resources :
47
47
limits :
48
- cpu : 100m
49
- memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem }}
48
+ cpu : {{ .Cluster.ConfigItems.aws_load_balancer_controller_cpu }}
49
+ memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem_max }}
50
50
requests :
51
- cpu : 100m
52
- memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem }}
51
+ cpu : {{ .Cluster.ConfigItems.aws_load_balancer_controller_cpu }}
52
+ memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem_max }}
53
53
securityContext :
54
54
allowPrivilegeEscalation : false
55
55
readOnlyRootFilesystem : true
Original file line number Diff line number Diff line change 18
18
containerPolicies :
19
19
- containerName : controller
20
20
maxAllowed :
21
- memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem }}
21
+ memory : {{ .Cluster.ConfigItems.aws_load_balancer_controller_mem_max }}
22
22
# {{- end }}
You can’t perform that action at this time.
0 commit comments