File tree 2 files changed +9
-1
lines changed
helm/aws-load-balancer-controller
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,9 @@ spec:
131
131
{{- if .Values.defaultTags }}
132
132
- --default-tags={{ include "aws-load-balancer-controller.convertMapToCsv" .Values.defaultTags | trimSuffix "," }}
133
133
{{- end }}
134
+ {{- if .Values.endpointSGTags }}
135
+ - --endpoint-security-group-tags={{ include "aws-load-balancer-controller.convertMapToCsv" .Values.endpointSGTags | trimSuffix "," }}
136
+ {{- end }}
134
137
{{- if kindIs "bool" .Values.enableEndpointSlices }}
135
138
- --enable-endpoint-slices={{ .Values.enableEndpointSlices }}
136
139
{{- end }}
Original file line number Diff line number Diff line change @@ -279,6 +279,11 @@ defaultTags: {}
279
279
# default_tag1: value1
280
280
# default_tag2: value2
281
281
282
+ # endpointSGTags are the tags that will be used by the controller to find the worker node security group to add inbound rules from NLBs.
283
+ endpointSGTags : {}
284
+ # default_tag1: value1
285
+ # default_tag2: value2
286
+
282
287
# podDisruptionBudget specifies the disruption budget for the controller pods.
283
288
# Disruption budget will be configured only when the replicaCount is greater than 1
284
289
podDisruptionBudget : {}
@@ -340,4 +345,4 @@ ingressClassConfig:
340
345
default : false
341
346
342
347
# disableServiceMutatorWebhook allows you disable the webhook which makes this controller the default for all new services of type LoadBalancer
343
- disableServiceMutatorWebhook : true
348
+ disableServiceMutatorWebhook : true
You can’t perform that action at this time.
0 commit comments