Skip to content

Commit 9dbcbc9

Browse files
authored
enable EndpointsFailOpen by default (#3078)
1 parent 49805ea commit 9dbcbc9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/deploy/configurations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ They are a set of kye=value pairs that describe AWS load balance controller feat
155155
| ListenerRulesTagging | string | true | Enable or disable tagging AWS load balancer listeners and rules |
156156
| WeightedTargetGroups | string | true | Enable or disable weighted target groups |
157157
| ServiceTypeLoadBalancerOnly | string | false | If enabled, controller will be limited to reconciling service of type `LoadBalancer`|
158-
| EndpointsFailOpen | string | false | Enable or disable allowing endpoints with `ready:unknown` state in the target groups. |
158+
| EndpointsFailOpen | string | true | Enable or disable allowing endpoints with `ready:unknown` state in the target groups. |
159159
| EnableServiceController | string | true | Toggles support for `Service` type resources. |
160160
| EnableIPTargetType | string | true | Used to toggle support for target-type `ip` across `Ingress` and `Service` type resources. |
161161
| SubnetsClusterTagCheck | string | true | Enable or disable the check for `kubernetes.io/cluster/${cluster-name}` during subnet auto-discovery |
162-
| NLBHealthCheckAdvancedConfiguration | string | true | Enable or disable advanced health check configuration for NLB, for example health check timeout |
162+
| NLBHealthCheckAdvancedConfiguration | string | true | Enable or disable advanced health check configuration for NLB, for example health check timeout |

pkg/config/feature_gates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func NewFeatureGates() FeatureGates {
4949
ListenerRulesTagging: true,
5050
WeightedTargetGroups: true,
5151
ServiceTypeLoadBalancerOnly: false,
52-
EndpointsFailOpen: false,
52+
EndpointsFailOpen: true,
5353
EnableServiceController: true,
5454
EnableIPTargetType: true,
5555
SubnetsClusterTagCheck: true,

0 commit comments

Comments
 (0)