You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add EnhancedDefaulting flag to do sensible defaulting when possible (#4344)
* introduce enhanced defaulting to address weird defaulting behavior :)
* remove subnet resolver / az check from mtls builder in gateway api
* add ALPN defaulting
* refactor addons for gateway to allow setting ELB PC
* remove defaulting from MutualAuth as not all ALB zones support it
Copy file name to clipboardExpand all lines: docs/deploy/configurations.md
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,18 +172,19 @@ If running on EC2, the default values are obtained from the instance metadata se
172
172
### Feature Gates
173
173
There are a set of key=value pairs that describe AWS load balancer controller features. You can use it as flags `--feature-gates=key1=value1,key2=value2`
174
174
175
-
|Features-gate Supported Key | Type | Default Value | Description |
| ListenerRulesTagging | string | true | Enable or disable tagging AWS load balancer listeners and rules |
178
-
| WeightedTargetGroups | string | true | Enable or disable weighted target groups |
179
-
| ServiceTypeLoadBalancerOnly | string | false | If enabled, controller will be limited to reconciling service of type `LoadBalancer` |
180
-
| EndpointsFailOpen | string | true | Enable or disable allowing endpoints with `ready:unknown` state in the target groups. |
181
-
| EnableServiceController | string | true | Toggles support for `Service` type resources. |
182
-
| EnableIPTargetType | string | true | Used to toggle support for target-type `ip` across `Ingress` and `Service` type resources. |
183
-
| EnableRGTAPI | string | false | If enabled, the tagging manager will describe resource tags via RGT APIs, otherwise via ELB APIs. In order to enable RGT API, `tag:GetResources` is needed in controller IAM policy. |
184
-
| SubnetsClusterTagCheck | string | true | Enable or disable the check for `kubernetes.io/cluster/${cluster-name}` during subnet auto-discovery |
185
-
| NLBHealthCheckAdvancedConfiguration | string | true | Enable or disable advanced health check configuration for NLB, for example health check timeout |
186
-
| ALBSingleSubnet | string | false | If enabled, controller will allow using only 1 subnet for provisioning ALB, which need to get whitelisted by ELB in advance |
175
+
|Features-gate Supported Key | Type | Default Value | Description |
| ListenerRulesTagging | string | true | Enable or disable tagging AWS load balancer listeners and rules |
178
+
| WeightedTargetGroups | string | true | Enable or disable weighted target groups |
179
+
| ServiceTypeLoadBalancerOnly | string | false | If enabled, controller will be limited to reconciling service of type `LoadBalancer` |
180
+
| EndpointsFailOpen | string | true | Enable or disable allowing endpoints with `ready:unknown` state in the target groups. |
181
+
| EnableServiceController | string | true | Toggles support for `Service` type resources. |
182
+
| EnableIPTargetType | string | true | Used to toggle support for target-type `ip` across `Ingress` and `Service` type resources. |
183
+
| EnableRGTAPI | string | false | If enabled, the tagging manager will describe resource tags via RGT APIs, otherwise via ELB APIs. In order to enable RGT API, `tag:GetResources` is needed in controller IAM policy. |
184
+
| SubnetsClusterTagCheck | string | true | Enable or disable the check for `kubernetes.io/cluster/${cluster-name}` during subnet auto-discovery |
185
+
| NLBHealthCheckAdvancedConfiguration | string | true | Enable or disable advanced health check configuration for NLB, for example health check timeout |
186
+
| ALBSingleSubnet | string | false | If enabled, controller will allow using only 1 subnet for provisioning ALB, which need to get whitelisted by ELB in advance |
187
187
| NLBSecurityGroup | string | true | Enable or disable all NLB security groups actions including frontend sg creation, backend sg creation, and backend sg modifications. This same behavior is able to be applied to an individual service by using the annotation `aws-load-balancer-disable-nlb-sg` |
188
-
| LBCapacityReservation | string | true | Enable or disable the capacity reservation feature on ALB and NLB |
189
-
| EnableTCPUDPListenerType | string | false | Enable or disable creation of TCP_UDP type listeners. This value can be overriden at the Service level by the annotation `service.beta.kubernetes.io/aws-load-balancer-enable-tcp-udp-listener` |
188
+
| LBCapacityReservation | string | true | Enable or disable the capacity reservation feature on ALB and NLB |
189
+
| EnableTCPUDPListenerType | string | false | Enable or disable creation of TCP_UDP type listeners. This value can be overriden at the Service level by the annotation `service.beta.kubernetes.io/aws-load-balancer-enable-tcp-udp-listener` |
190
+
| EnhancedDefaultBehavior | string | false | Enable this feature to allow the controller to remove Provisioned Capacity or mTLS settings by removing the corresponding annotation. |
0 commit comments