From 4ba6f8a642d9e61999651dfe126f9a3ce71a13b0 Mon Sep 17 00:00:00 2001 From: Christopher Fry Date: Sun, 22 Oct 2023 21:42:24 -0700 Subject: [PATCH] fix: remove client-side validation from example guestbook operator --- examples/guestbook-operator/controllers/guestbook_controller.go | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/guestbook-operator/controllers/guestbook_controller.go b/examples/guestbook-operator/controllers/guestbook_controller.go index b7ed13cb..faf702d4 100644 --- a/examples/guestbook-operator/controllers/guestbook_controller.go +++ b/examples/guestbook-operator/controllers/guestbook_controller.go @@ -62,7 +62,6 @@ func (r *GuestbookReconciler) setupReconciler(mgr ctrl.Manager) error { declarative.WithApplyKustomize(), // Add other optional options for testing - declarative.WithApplyValidation(), declarative.WithReconcileMetrics(0, nil), ) }