diff --git a/pkg/lib/bundle/supported_resources.go b/pkg/lib/bundle/supported_resources.go index 3569367ef..ee2afeb41 100644 --- a/pkg/lib/bundle/supported_resources.go +++ b/pkg/lib/bundle/supported_resources.go @@ -22,6 +22,7 @@ const ( ConsoleLinkKind = "ConsoleLink" ConsolePlugin = "ConsolePlugin" NetworkPolicyKind = "NetworkPolicy" + PodMonitorKind = "PodMonitor" ) // Namespaced indicates whether the resource is namespace scoped (true) or cluster-scoped (false). @@ -51,6 +52,7 @@ var supportedResources = map[string]Namespaced{ ConsoleLinkKind: false, ConsolePlugin: false, NetworkPolicyKind: true, + PodMonitorKind: true, } // IsSupported checks if the object kind is OLM-supported and if it is namespaced