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
Copy file name to clipboardExpand all lines: staging/src/k8s.io/legacy-cloud-providers/azure/azure_loadbalancer.go
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1025,10 +1025,8 @@ func (az *Cloud) reconcileLoadBalancerRule(
1025
1025
varenableTCPReset*bool
1026
1026
ifaz.useStandardLoadBalancer() {
1027
1027
enableTCPReset=to.BoolPtr(true)
1028
-
ifv, ok:=service.Annotations[ServiceAnnotationLoadBalancerDisableTCPReset]; ok {
1029
-
klog.Warning("annotation service.beta.kubernetes.io/azure-load-balancer-disable-tcp-reset has been depracated, it would be removed in a future release")
1030
-
klog.V(2).Infof("reconcileLoadBalancerRule lb name (%s) flag(%s) is set to %s", lbName, ServiceAnnotationLoadBalancerDisableTCPReset, v)
if_, ok:=service.Annotations[ServiceAnnotationLoadBalancerDisableTCPReset]; ok {
1029
+
klog.Warning("annotation service.beta.kubernetes.io/azure-load-balancer-disable-tcp-reset has been removed as of Kubernetes 1.20. TCP Resets are always enabled on Standard SKU load balancers.")
0 commit comments