mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
* extract kindsys * reinstate kindsys report This may end up living somewhere else (or not! who knows!), but the important part is that I don't get rid of it right now :) I hate the package layout (kindsysreport/codegen) for the main function and will take pretty much any alternative suggestion, but we can change also change it later. Note that the generated report.json is in a different location - anything using this (ops something) needs to be updated. * kindsysreport in codeowners
35 lines
836 B
Go
35 lines
836 B
Go
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
//
|
|
// Generated by:
|
|
// kinds/gen.go
|
|
// Using jennies:
|
|
// CRDTypesJenny
|
|
//
|
|
// Run 'make gen-cue' from repository root to regenerate.
|
|
|
|
package crd
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/grafana/grafana/pkg/kinds/playlist"
|
|
"github.com/grafana/kindsys/k8ssys"
|
|
)
|
|
|
|
// The CRD YAML representation of the Playlist kind.
|
|
//
|
|
//go:embed playlist.crd.yml
|
|
var CRDYaml []byte
|
|
|
|
// Playlist is the Go CRD representation of a single Playlist object.
|
|
// It implements [runtime.Object], and is used in k8s scheme construction.
|
|
type Playlist struct {
|
|
k8ssys.Base[playlist.Playlist]
|
|
}
|
|
|
|
// PlaylistList is the Go CRD representation of a list Playlist objects.
|
|
// It implements [runtime.Object], and is used in k8s scheme construction.
|
|
type PlaylistList struct {
|
|
k8ssys.ListBase[playlist.Playlist]
|
|
}
|