From 10641ee62c8e955a02cf77d702cfa7a90134da79 Mon Sep 17 00:00:00 2001 From: Andy Krohg Date: Wed, 18 Aug 2021 16:58:17 -0400 Subject: [PATCH] Fix case-related typo in ConsoleYAMLSample entry in supported_resources --- pkg/lib/bundle/supported_resources.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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