@@ -138,6 +138,11 @@ awsMaxRetries:
138138# NOTE: In Gardener, only "instance" mode is currently supported.
139139defaultTargetType : instance
140140
141+ # Default load balancer scheme when not specifying "alb.ingress.kubernetes.io/scheme" or
142+ # "service.beta.kubernetes.io/aws-load-balancer-scheme" annotations.
143+ # Possible values are "internal" and "internet-facing" (default "internal")
144+ defaultLoadBalancerScheme :
145+
141146# If enabled, targetHealth readiness gate will get injected to the pod spec for the matching endpoint pods (default true)
142147enablePodReadinessGateInject :
143148
@@ -196,6 +201,14 @@ albGatewayMaxConcurrentReconciles:
196201# Maximum number of concurrently running reconcile loops for NLB gateways (default 3)
197202nlbGatewayMaxConcurrentReconciles :
198203
204+ # Maximum number of concurrently running reconcile loops for GlobalAccelerator objects
205+ globalAcceleratorMaxConcurrentReconciles :
206+
207+ # Maximum duration of exponential backoff for GlobalAccelerator reconcile failures
208+ globalAcceleratorMaxExponentialBackoffDelay :
209+
210+ # Interval at which the controller monitors the state of load balancer after creation for stabilization
211+ lbStabilizationMonitorInterval :
199212
200213# Period at which the controller forces the repopulation of its local object stores. (default 1h0m0s)
201214syncPeriod :
@@ -305,6 +318,9 @@ backendSecurityGroup:
305318# disableRestrictedSecurityGroupRules specifies whether to disable creating port-range restricted security group rules for traffic
306319disableRestrictedSecurityGroupRules :
307320
321+ # maxTargetsPerTargetGroup specifies the maximum number of targets that the controller will attempt to add to a given ELB instance
322+ maxTargetsPerTargetGroup :
323+
308324# controllerConfig specifies controller configuration
309325controllerConfig :
310326 # featureGates set of key: value pairs that describe AWS load balance controller features
@@ -363,3 +379,6 @@ ingressClassConfig:
363379 default : false
364380
365381useWorkloadIdentity : false
382+
383+ certDiscovery :
384+ allowedCertificateAuthorityARNs : " " # empty means all CAs are in scope
0 commit comments