c15b1b6f10
* annotation legacy store with api server, read only * annotations are not addressable by ID for read operations * add ownership for an app * typo, of course * fix go workspace * update workspace * copy annotation app in dockerfile * experimenting with store interface * finalising interfaces * add tags as custom handler * implement tags handler * add missing config file * mute linter * update generated files * update workspace
36 lines
635 B
CUE
36 lines
635 B
CUE
package kinds
|
|
|
|
manifest: {
|
|
appName: "annotation"
|
|
groupOverride: "annotation.grafana.app"
|
|
versions: {
|
|
"v0alpha1": v0alpha1
|
|
}
|
|
}
|
|
|
|
v0alpha1: {
|
|
kinds: [annotationv0alpha1]
|
|
routes: {
|
|
namespaced: {
|
|
"/tags": {
|
|
"GET": {
|
|
response: {
|
|
tags: [...{
|
|
tag: string
|
|
count: number
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
codegen: {
|
|
ts: {
|
|
enabled: true
|
|
}
|
|
go: {
|
|
enabled: true
|
|
}
|
|
}
|
|
}
|