mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
b28a208926
kindsys: Separate code ownership of CustomStructured
16 lines
577 B
CUE
16 lines
577 B
CUE
package kindsys
|
|
|
|
// CustomStructured specifies the Kind category for plugin-defined arbitrary types.
|
|
// Custom kinds have the same purpose as CoreStructured 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 CoreStructured kind.
|
|
//
|
|
// Grafana provides Kubernetes apiserver-shaped APIs for interacting with custom kinds -
|
|
// The same API patterns (and clients) used to interact with CustomResources.
|
|
#CustomStructured: {
|
|
#Structured
|
|
|
|
lineageIsGroup: false
|
|
...
|
|
}
|