From 506861c0a045e4f387148c5d67cac7c80f1887f6 Mon Sep 17 00:00:00 2001 From: Rob Scott Date: Tue, 10 Nov 2020 17:51:32 -0800 Subject: [PATCH] Removing "IP" from supported EndpointSlice address types in kube-proxy --- pkg/proxy/endpoints.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/proxy/endpoints.go b/pkg/proxy/endpoints.go index fdbe1315be2..0de805dc2c1 100644 --- a/pkg/proxy/endpoints.go +++ b/pkg/proxy/endpoints.go @@ -36,7 +36,6 @@ import ( ) var supportedEndpointSliceAddressTypes = sets.NewString( - string(discovery.AddressTypeIP), // IP is a deprecated address type string(discovery.AddressTypeIPv4), string(discovery.AddressTypeIPv6), )