mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 01:23:32 -06:00
* kindsys: Remove defs, Slot->SchemaInterface * Remove excess file * Fix up tests * Regenerate kinds report * Final bits of cleanup * Stop complaining, linter * Update pkg/kindsys/kindcat_composable.cue Co-authored-by: Tania <yalyna.ts@gmail.com> Co-authored-by: Tania <yalyna.ts@gmail.com>
16 lines
576 B
CUE
16 lines
576 B
CUE
package kindsys
|
|
|
|
// Custom specifies the kind category for plugin-defined arbitrary types.
|
|
// Custom kinds have the same purpose as Core kinds, differing only in
|
|
// that they are declared by external plugins rather than in Grafana core. As such,
|
|
// this specification is kept closely aligned with the Core kind.
|
|
//
|
|
// Grafana provides Kubernetes apiserver-shaped HTTP APIs for interacting with custom
|
|
// kinds - the same API patterns (and clients) used to interact with k8s CustomResources.
|
|
Custom: S={
|
|
_sharedKind
|
|
|
|
lineage: { name: S.machineName }
|
|
lineageIsGroup: false
|
|
}
|