From f2d77f4c2dc3c5d9f478f15a7a0e508e00c4415b Mon Sep 17 00:00:00 2001 From: Alex Leong Date: Fri, 8 Nov 2024 12:33:34 -0800 Subject: [PATCH] fix: Remove duplicate variable (#13291) A merge issue introduced duplicate variables. This change removes them. Signed-off-by: Alex Leong --- pkg/k8s/labels.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/k8s/labels.go b/pkg/k8s/labels.go index 7863de680ff90..d828f71cd3c30 100644 --- a/pkg/k8s/labels.go +++ b/pkg/k8s/labels.go @@ -478,15 +478,6 @@ const ( // on the remote cluster RemoteServiceFqName = SvcMirrorPrefix + "/remote-svc-fq-name" - // RemoteDiscoveryAnnotation is like the RemoteDiscoveryLabel but it allows - // a list of remote discovery targets to be specified in the format: - // @,@,... - RemoteDiscoveryAnnotation = MulticlusterPrefix + "/remote-discovery" - - // LocalDiscoveryAnnotation is like the RemoteDiscoveryAnnotation but it - // specifies a single service in the local cluster. - LocalDiscoveryAnnotation = MulticlusterPrefix + "/local-discovery" - // RemoteGatewayIdentity follows the same kind of logic as RemoteGatewayNameLabel RemoteGatewayIdentity = SvcMirrorPrefix + "/remote-gateway-identity"