K8s: Add App SDK installer (#107773)

This commit is contained in:
Todd Treece
2025-07-21 13:32:15 -04:00
committed by GitHub
parent 548964f728
commit e5d2f92384
107 changed files with 2772 additions and 1891 deletions
+54 -9
View File
@@ -7,6 +7,7 @@ package apis
import (
"fmt"
"strings"
"github.com/grafana/grafana-app-sdk/app"
"github.com/grafana/grafana-app-sdk/resource"
@@ -17,29 +18,60 @@ import (
v2alpha2 "github.com/grafana/grafana/apps/dashboard/pkg/apis/dashboard/v2alpha2"
)
var ()
var appManifestData = app.ManifestData{
AppName: "dashboard",
Group: "dashboard.grafana.app",
Kinds: []app.ManifestKind{
Versions: []app.ManifestVersion{
{
Kind: "Dashboard",
Scope: "Namespaced",
Conversion: false,
Versions: []app.ManifestKindVersion{
Name: "v0alpha1",
Served: true,
Kinds: []app.ManifestVersionKind{
{
Name: "v0alpha1",
Kind: "Dashboard",
Plural: "Dashboards",
Scope: "Namespaced",
Conversion: false,
},
},
},
{
Name: "v1beta1",
Served: true,
Kinds: []app.ManifestVersionKind{
{
Name: "v1beta1",
Kind: "Dashboard",
Plural: "Dashboards",
Scope: "Namespaced",
Conversion: false,
},
},
},
{
Name: "v2alpha1",
Served: true,
Kinds: []app.ManifestVersionKind{
{
Name: "v2alpha1",
Kind: "Dashboard",
Plural: "Dashboards",
Scope: "Namespaced",
Conversion: false,
},
},
},
{
Name: "v2alpha2",
Served: true,
Kinds: []app.ManifestVersionKind{
{
Name: "v2alpha2",
Kind: "Dashboard",
Plural: "Dashboards",
Scope: "Namespaced",
Conversion: false,
},
},
},
@@ -67,3 +99,16 @@ func ManifestGoTypeAssociator(kind, version string) (goType resource.Kind, exist
goType, exists = kindVersionToGoType[fmt.Sprintf("%s/%s", kind, version)]
return goType, exists
}
var customRouteToGoResponseType = map[string]any{}
// ManifestCustomRouteResponsesAssociator returns the associated response go type for a given kind, version, custom route path, and method, if one exists.
// kind may be empty for custom routes which are not kind subroutes. Leading slashes are removed from subroute paths.
// If there is no association for the provided kind, version, custom route path, and method, exists will return false.
func ManifestCustomRouteResponsesAssociator(kind, version, path, verb string) (goType any, exists bool) {
if len(path) > 0 && path[0] == '/' {
path = path[1:]
}
goType, exists = customRouteToGoResponseType[fmt.Sprintf("%s|%s|%s|%s", version, kind, path, strings.ToUpper(verb))]
return goType, exists
}