From 142115d7d0f361acb6e87d544115d8269d8f2d0b Mon Sep 17 00:00:00 2001 From: yanxiaoqi932 Date: Tue, 7 Nov 2023 13:15:38 +0800 Subject: [PATCH] move selector from api to core --- pkg/consts/qos.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pkg/consts/qos.go b/pkg/consts/qos.go index d1fc1c0..5d660a5 100644 --- a/pkg/consts/qos.go +++ b/pkg/consts/qos.go @@ -76,13 +76,3 @@ const ( PodAnnotationMicroTopologyAffinityDefaultZone = "numa" ) - -// 解析后的inter-pod affinity annotations -type Selector struct { - MatchLabels map[string]string - Zone string -} -type MicroTopologyPodAffinityAnnotation struct { - Required []Selector - Preferred []Selector -}