diff --git a/pkg/controller/operators/catalog/supportedresources.go b/pkg/controller/operators/catalog/supportedresources.go index 4d0a97d1b6..c7aad54041 100644 --- a/pkg/controller/operators/catalog/supportedresources.go +++ b/pkg/controller/operators/catalog/supportedresources.go @@ -10,6 +10,7 @@ const ( ConsoleQuickStartKind = "ConsoleQuickStart" ConsoleCLIDownloadKind = "ConsoleCLIDownload" ConsoleLinkKind = "ConsoleLink" + ConsolePlugin = "ConsolePlugin" ) var supportedKinds = map[string]struct{}{ @@ -22,6 +23,7 @@ var supportedKinds = map[string]struct{}{ ConsoleQuickStartKind: {}, ConsoleCLIDownloadKind: {}, ConsoleLinkKind: {}, + ConsolePlugin: {}, } // isSupported returns true if OLM supports this type of CustomResource.