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