Skip to content

Commit e1f440e

Browse files
committed
address review comments
1 parent 10d99ae commit e1f440e

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

charts/internal/seed-controlplane/charts/aws-load-balancer-controller/values.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ awsMaxRetries:
138138
# NOTE: In Gardener, only "instance" mode is currently supported.
139139
defaultTargetType: 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)
142147
enablePodReadinessGateInject:
143148

@@ -196,6 +201,14 @@ albGatewayMaxConcurrentReconciles:
196201
# Maximum number of concurrently running reconcile loops for NLB gateways (default 3)
197202
nlbGatewayMaxConcurrentReconciles:
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)
201214
syncPeriod:
@@ -305,6 +318,9 @@ backendSecurityGroup:
305318
# disableRestrictedSecurityGroupRules specifies whether to disable creating port-range restricted security group rules for traffic
306319
disableRestrictedSecurityGroupRules:
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
309325
controllerConfig:
310326
# featureGates set of key: value pairs that describe AWS load balance controller features
@@ -363,3 +379,6 @@ ingressClassConfig:
363379
default: false
364380

365381
useWorkloadIdentity: false
382+
383+
certDiscovery:
384+
allowedCertificateAuthorityARNs: "" # empty means all CAs are in scope

charts/internal/shoot-system-components/charts/csi-driver-efs/templates/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ spec:
6969
containerName: driver-efs-node
7070
resource: limits.memory
7171
- name: PORT_RANGE_UPPER_BOUND
72-
value: "21049"
72+
value: {{ .Values.resources.portRangeUpperBound }}
7373
volumeMounts:
7474
- name: kubelet-dir
7575
mountPath: {{ .Values.node.kubeletPath }}

charts/internal/shoot-system-components/charts/csi-driver-efs/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ resources:
2626
memory: 38Mi
2727
limits:
2828
memory: 400Mi
29+
portRangeUpperBound: "21049"
2930

3031
sidecars:
3132
livenessProbe:
@@ -111,4 +112,4 @@ controller:
111112
privileged: true
112113
leaderElectionRenewDeadline: 10s
113114
leaderElectionLeaseDuration: 15s
114-
imdsEndpointMode: ipv4
115+
imdsEndpointMode: ipv4

0 commit comments

Comments
 (0)