Skip to content

Commit 4854606

Browse files
committed
Cleanup only owned services
Signed-off-by: Shiva Krishna, Merla <[email protected]>
1 parent fe141ea commit 4854606

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

internal/controller/nimpipeline_controller.go

+13
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,19 @@ func (r *NIMPipelineReconciler) cleanupDisabledNIMs(ctx context.Context, nimPipe
234234
var allErrors []error
235235

236236
for _, svc := range serviceList.Items {
237+
owned := false
238+
for _, ownerRef := range svc.GetOwnerReferences() {
239+
if ownerRef.Kind == "NIMPipeline" && ownerRef.UID == nimPipeline.UID {
240+
owned = true
241+
break
242+
}
243+
}
244+
245+
// Ignore NIM services not owned by the NIM pipeline
246+
if !owned {
247+
continue
248+
}
249+
237250
// Cleanup any stale NIM services if they are part of the pipeline but are disabled
238251
if enabled, exists := enabledServices[svc.Name]; exists && !enabled {
239252
if err := r.deleteService(ctx, &svc); err != nil {

0 commit comments

Comments
 (0)