We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 412b487 commit ae77a57Copy full SHA for ae77a57
staging/operator-registry/pkg/lib/bundle/supported_resources.go
@@ -16,6 +16,7 @@ const (
16
PodDisruptionBudgetKind = "PodDisruptionBudget"
17
PriorityClassKind = "PriorityClass"
18
VerticalPodAutoscalerKind = "VerticalPodAutoscaler"
19
+ ConsoleYamlSampleKind = "ConsoleYamlSample"
20
)
21
22
// Namespaced indicates whether the resource is namespace scoped (true) or cluster-scoped (false).
@@ -39,6 +40,7 @@ var supportedResources = map[string]Namespaced{
39
40
PodDisruptionBudgetKind: true,
41
PriorityClassKind: false,
42
VerticalPodAutoscalerKind: false,
43
+ ConsoleYamlSampleKind: false,
44
}
45
46
// IsSupported checks if the object kind is OLM-supported and if it is namespaced
0 commit comments