File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
helm/aws-load-balancer-controller Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : aws-load-balancer-controller
3
3
description : AWS Load Balancer Controller Helm chart for Kubernetes
4
- version : 1.3.1
4
+ version : 1.3.2
5
5
appVersion : v2.3.0
6
6
home : https://github.com/aws/eks-charts
7
7
icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
Original file line number Diff line number Diff line change @@ -210,5 +210,6 @@ The default values set by the application itself can be confirmed [here](https:/
210
210
| ` updateStrategy ` | Defines the update strategy for the deployment | ` {} ` |
211
211
| ` enableCertManager ` | If enabled, cert-manager issues the webhook certificates instead of the helm template | ` false ` |
212
212
| ` enableEndpointSlices ` | If enabled, controller uses k8s EndpointSlices instead of Endpoints for IP targets | ` false ` |
213
- | ` enableBackendSecurityGroup ` | If enabled, controller uses shared security group for backend traffic | ` true ` |
214
- | ` backendSecurityGroup ` | Backend security group to use instead of auto created one if the feature is enabled | `` |
213
+ | ` enableBackendSecurityGroup ` | If enabled, controller uses shared security group for backend traffic | ` true ` |
214
+ | ` backendSecurityGroup ` | Backend security group to use instead of auto created one if the feature is enabled | `` |
215
+ | ` disableRestrictedSecurityGroupRules ` | If disabled, controller will not specify port range restriction in the backend security group rules | ` true ` |
Original file line number Diff line number Diff line change @@ -128,6 +128,9 @@ spec:
128
128
{{- if .Values.backendSecurityGroup }}
129
129
- --backend-security-group={{ .Values.backendSecurityGroup }}
130
130
{{- end }}
131
+ {{- if kindIs "bool" .Values.disableRestrictedSecurityGroupRules }}
132
+ - --disable-restricted-sg-rules={{ .Values.disableRestrictedSecurityGroupRules }}
133
+ {{- end }}
131
134
{{- if .Values.env }}
132
135
env :
133
136
{{- range $key, $value := .Values.env }}
Original file line number Diff line number Diff line change @@ -221,4 +221,7 @@ enableEndpointSlices:
221
221
enableBackendSecurityGroup :
222
222
223
223
# backendSecurityGroup specifies backend security group id (default controller auto create backend security group)
224
- backendSecurityGroup:
224
+ backendSecurityGroup :
225
+
226
+ # disableRestrictedSecurityGroupRules specifies whether to disable creating port-range restricted security group rules for traffic
227
+ disableRestrictedSecurityGroupRules : true
You can’t perform that action at this time.
0 commit comments