8
8
discoveryv1 "k8s.io/api/discovery/v1"
9
9
"k8s.io/apimachinery/pkg/runtime"
10
10
"k8s.io/client-go/tools/record"
11
- "k8s.io/klog/v2"
11
+ klog "k8s.io/klog/v2"
12
12
ctrl "sigs.k8s.io/controller-runtime"
13
13
"sigs.k8s.io/controller-runtime/pkg/builder"
14
14
"sigs.k8s.io/controller-runtime/pkg/client"
@@ -52,13 +52,14 @@ func (c *EndpointSliceReconciler) updateDatastore(
52
52
podMap := make (map [Pod ]bool )
53
53
54
54
for _ , endpoint := range slice .Endpoints {
55
- klog .V (4 ).Infof ("Zone: %v \n endpoint: %+v \n " , c .Zone , endpoint )
55
+ klog .V (2 ).Infof ("Zone: %v \n endpoint: %+v \n " , c .Zone , endpoint )
56
56
if c .validPod (endpoint ) {
57
57
pod := Pod {
58
58
Name : endpoint .TargetRef .Name ,
59
59
Address : endpoint .Addresses [0 ] + ":" + strconv .Itoa (int (inferencePool .Spec .TargetPortNumber )),
60
60
}
61
61
podMap [pod ] = true
62
+ klog .V (2 ).Infof ("Storing pod %v" , pod )
62
63
c .Datastore .pods .Store (pod , true )
63
64
}
64
65
}
@@ -70,6 +71,7 @@ func (c *EndpointSliceReconciler) updateDatastore(
70
71
return false
71
72
}
72
73
if _ , ok := podMap [pod ]; ! ok {
74
+ klog .V (2 ).Infof ("Removing pod %v" , pod )
73
75
c .Datastore .pods .Delete (pod )
74
76
}
75
77
return true
@@ -81,7 +83,7 @@ func (c *EndpointSliceReconciler) SetupWithManager(mgr ctrl.Manager) error {
81
83
inferencePoolAvailable := func (object client.Object ) bool {
82
84
_ , err := c .Datastore .getInferencePool ()
83
85
if err != nil {
84
- klog .Warningf ("Skipping reconciling EndpointSlice because the InferencePool is not available yet: %v" , err )
86
+ klog .V ( 2 ). Infof ("Skipping reconciling EndpointSlice because the InferencePool is not available yet: %v" , err )
85
87
}
86
88
return err == nil
87
89
}
@@ -93,7 +95,13 @@ func (c *EndpointSliceReconciler) SetupWithManager(mgr ctrl.Manager) error {
93
95
return false
94
96
}
95
97
96
- return endpointSlice .ObjectMeta .Labels [serviceOwnerLabel ] == c .ServiceName
98
+ gotLabel := endpointSlice .ObjectMeta .Labels [serviceOwnerLabel ]
99
+ wantLabel := c .ServiceName
100
+ if gotLabel != wantLabel {
101
+ namesapcedName := endpointSlice .ObjectMeta .Namespace + "/" + endpointSlice .ObjectMeta .Name
102
+ klog .V (2 ).Infof ("Skipping EndpointSlice %v because its service owner label %v doesn't match the pool service name %v" , namesapcedName , gotLabel , wantLabel )
103
+ }
104
+ return gotLabel == wantLabel
97
105
}
98
106
99
107
return ctrl .NewControllerManagedBy (mgr ).
0 commit comments