mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
26 lines
895 B
Go
26 lines
895 B
Go
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package applyconfiguration
|
|
|
|
import (
|
|
v0alpha1 "github.com/grafana/grafana/pkg/apis/service/v0alpha1"
|
|
servicev0alpha1 "github.com/grafana/grafana/pkg/generated/applyconfiguration/service/v0alpha1"
|
|
schema "k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
// ForKind returns an apply configuration type for the given GroupVersionKind, or nil if no
|
|
// apply configuration type exists for the given GroupVersionKind.
|
|
func ForKind(kind schema.GroupVersionKind) interface{} {
|
|
switch kind {
|
|
// Group=service.grafana.app, Version=v0alpha1
|
|
case v0alpha1.SchemeGroupVersion.WithKind("ExternalName"):
|
|
return &servicev0alpha1.ExternalNameApplyConfiguration{}
|
|
case v0alpha1.SchemeGroupVersion.WithKind("ExternalNameSpec"):
|
|
return &servicev0alpha1.ExternalNameSpecApplyConfiguration{}
|
|
|
|
}
|
|
return nil
|
|
}
|