Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete InferenceModels from the datastore when deletionTimestamp is set #319

Merged
merged 2 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/ext-proc/backend/inferencemodel_reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ func (c *InferenceModelReconciler) Reconcile(ctx context.Context, req ctrl.Reque
}
klog.Error(err, "Unable to get InferenceModel")
return ctrl.Result{}, err
} else if !infModel.DeletionTimestamp.IsZero() {
klog.V(1).Infof("InferenceModel %v is marked for deletion. Removing from datastore", req.NamespacedName)
c.Datastore.InferenceModels.Delete(infModel.Spec.ModelName)
return ctrl.Result{}, nil
}

c.updateDatastore(infModel)
Expand Down
60 changes: 60 additions & 0 deletions pkg/ext-proc/backend/inferencemodel_reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,66 @@ func TestReconcile_ResourceNotFound(t *testing.T) {
}
}

func TestReconcile_ModelMarkedForDeletion(t *testing.T) {
// Set up the scheme.
scheme := runtime.NewScheme()
_ = v1alpha1.AddToScheme(scheme)

// Create an InferenceModel object.
now := metav1.Now()
existingModel := &v1alpha1.InferenceModel{
ObjectMeta: metav1.ObjectMeta{
Name: "existing-model",
Namespace: "default",
DeletionTimestamp: &now,
Finalizers: []string{"finalizer"},
},
Spec: v1alpha1.InferenceModelSpec{
ModelName: "fake-model",
PoolRef: v1alpha1.PoolObjectReference{Name: "test-pool"},
},
}

// Create a fake client with the existing model.
fakeClient := fake.NewClientBuilder().WithScheme(scheme).WithObjects(existingModel).Build()

// Create a minimal datastore.
datastore := &K8sDatastore{
InferenceModels: &sync.Map{},
inferencePool: &v1alpha1.InferencePool{
ObjectMeta: metav1.ObjectMeta{Name: "test-pool"},
},
}

// Create the reconciler.
reconciler := &InferenceModelReconciler{
Client: fakeClient,
Scheme: scheme,
Record: record.NewFakeRecorder(10),
Datastore: datastore,
PoolNamespacedName: types.NamespacedName{Name: "test-pool", Namespace: "default"},
}

// Create a request for the existing resource.
req := ctrl.Request{NamespacedName: types.NamespacedName{Name: "existing-model", Namespace: "default"}}

// Call Reconcile.
result, err := reconciler.Reconcile(context.Background(), req)
if err != nil {
t.Fatalf("expected no error when resource exists, got %v", err)
}

// Check that no requeue is requested.
if result.Requeue || result.RequeueAfter != 0 {
t.Errorf("expected no requeue, got %+v", result)
}

// Verify that the datastore was not updated.
if _, ok := datastore.InferenceModels.Load(existingModel.Spec.ModelName); ok {
t.Errorf("expected datastore to not contain model %q", existingModel.Spec.ModelName)
}
}

func TestReconcile_ResourceExists(t *testing.T) {
// Set up the scheme.
scheme := runtime.NewScheme()
Expand Down