From 6655f4e38ce2d8520aa6aa5c644ae5026e7210b5 Mon Sep 17 00:00:00 2001 From: Julien Pinsonneau Date: Mon, 7 Apr 2025 16:43:54 +0200 Subject: [PATCH] add support for ConsolePlugin --- pkg/lib/bundle/supported_resources.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/lib/bundle/supported_resources.go b/pkg/lib/bundle/supported_resources.go index 94b5fd01d..b9440018f 100644 --- a/pkg/lib/bundle/supported_resources.go +++ b/pkg/lib/bundle/supported_resources.go @@ -20,6 +20,7 @@ const ( ConsoleQuickStartKind = "ConsoleQuickStart" ConsoleCLIDownloadKind = "ConsoleCLIDownload" ConsoleLinkKind = "ConsoleLink" + ConsolePlugin = "ConsolePlugin" ) // Namespaced indicates whether the resource is namespace scoped (true) or cluster-scoped (false). @@ -47,6 +48,7 @@ var supportedResources = map[string]Namespaced{ ConsoleQuickStartKind: false, ConsoleCLIDownloadKind: false, ConsoleLinkKind: false, + ConsolePlugin: false, } // IsSupported checks if the object kind is OLM-supported and if it is namespaced