diff --git a/pkg/cvo/sync_worker.go b/pkg/cvo/sync_worker.go index b469de747a..a5e761e417 100644 --- a/pkg/cvo/sync_worker.go +++ b/pkg/cvo/sync_worker.go @@ -699,6 +699,10 @@ func (w *SyncWorker) apply(ctx context.Context, payloadUpdate *payload.Update, w if task.Manifest.GVK != configv1.SchemeGroupVersion.WithKind("ClusterOperator") { continue } + if task.Manifest.Obj.GetName() == "baremetal" { + klog.V(4).Infof("Skipping precreation of %s, https://bugzilla.redhat.com/show_bug.cgi?id=1929917", task) + continue + } if err := w.builder.Apply(ctx, task.Manifest, payload.PrecreatingPayload); err != nil { klog.V(2).Infof("Unable to precreate resource %s: %v", task, err) continue