diff --git a/pkg/lib/bundle/supported_resources.go b/pkg/lib/bundle/supported_resources.go index 534e6568c..300caeb73 100644 --- a/pkg/lib/bundle/supported_resources.go +++ b/pkg/lib/bundle/supported_resources.go @@ -16,7 +16,7 @@ const ( PodDisruptionBudgetKind = "PodDisruptionBudget" PriorityClassKind = "PriorityClass" VerticalPodAutoscalerKind = "VerticalPodAutoscaler" - ConsoleYamlSampleKind = "ConsoleYamlSample" + ConsoleYAMLSampleKind = "ConsoleYAMLSample" ) // Namespaced indicates whether the resource is namespace scoped (true) or cluster-scoped (false). @@ -40,7 +40,7 @@ var supportedResources = map[string]Namespaced{ PodDisruptionBudgetKind: true, PriorityClassKind: false, VerticalPodAutoscalerKind: false, - ConsoleYamlSampleKind: false, + ConsoleYAMLSampleKind: false, } // IsSupported checks if the object kind is OLM-supported and if it is namespaced