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
@@ -1007,10 +1007,8 @@ func (az *Cloud) reconcileLoadBalancerRule(
1007
1007
varenableTCPReset*bool
1008
1008
ifaz.useStandardLoadBalancer() {
1009
1009
enableTCPReset=to.BoolPtr(true)
1010
-
ifv, ok:=service.Annotations[ServiceAnnotationLoadBalancerDisableTCPReset]; ok {
1011
-
klog.Warning("annotation service.beta.kubernetes.io/azure-load-balancer-disable-tcp-reset has been depracated, it would be removed in a future release")
1012
-
klog.V(2).Infof("reconcileLoadBalancerRule lb name (%s) flag(%s) is set to %s", lbName, ServiceAnnotationLoadBalancerDisableTCPReset, v)
if_, ok:=service.Annotations[ServiceAnnotationLoadBalancerDisableTCPReset]; ok {
1011
+
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