mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
d76defe517
* move GrafanaMetaAccessor into pkg/apis, add support for Spec.Title & Spec.Name * K8s: Move GrafanaMetaAccessor (PR into another) (#79728) * access titles * remove title * remove title * remove kinds metadata accessor * remove kinds metadata accessor * fixes * error handling * fix tests --------- Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
34 lines
918 B
Cheetah
34 lines
918 B
Cheetah
package {{ .PackageName }}
|
|
|
|
import (
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"github.com/grafana/grafana/pkg/kinds"
|
|
)
|
|
|
|
// Resource is the kubernetes style representation of {{ .KindName }}. (TODO be better)
|
|
type K8sResource = kinds.GrafanaResource[Spec, Status]
|
|
|
|
// NewResource creates a new instance of the resource with a given name (UID)
|
|
func NewK8sResource(name string, s *Spec) K8sResource {
|
|
return K8sResource{
|
|
TypeMeta: v1.TypeMeta{
|
|
Kind: "{{ .KindName }}",
|
|
APIVersion: "v{{ .Version }}-alpha",
|
|
},
|
|
ObjectMeta: v1.ObjectMeta{
|
|
Name: name,
|
|
Annotations: make(map[string]string),
|
|
Labels: make(map[string]string),
|
|
},
|
|
Spec: s,
|
|
}
|
|
}
|
|
|
|
// Resource is the wire representation of {{ .KindName }}.
|
|
// It currently will soon be merged into the k8s flavor (TODO be better)
|
|
type Resource struct {
|
|
{{- range .SubresourceNames }}
|
|
{{ . }} {{ . }} `json:"{{ . | ToLower }}"`{{end}}
|
|
}
|