grafana/pkg/services/apiserver
2024-05-16 12:57:49 +03:00
..
aggregator K8s: replace a noop certKey content func with actual if available (#84524) 2024-03-25 10:12:55 -07:00
auth K8s: Set X-Remote-Extra-User-Instance-Role header for SignedInUser (#87958) 2024-05-16 12:57:49 +03:00
endpoints/request K8s: Add apimachinery and apiserver packages (#83190) 2024-02-23 15:15:43 -05:00
options K8s: remove standalone authenticator in favor of providing one through the factory (#85901) 2024-04-11 21:30:23 +02:00
standalone K8s: add server run options (#87784) 2024-05-14 07:11:11 +03:00
storage/entity Unified Storage: Adds metrics for database query counts (#87781) 2024-05-14 10:17:38 -06:00
utils Storage: Add support for listing resource history (#84331) 2024-03-15 19:17:54 -04:00
config.go fix ipv6 startup fail #81870 (#87108) 2024-05-06 14:17:03 -04:00
README.md Chore: Add info about K8s folder structure to README (#87508) 2024-05-09 16:43:07 +03:00
service.go Unified Storage: Adds metrics for database query counts (#87781) 2024-05-14 10:17:38 -06:00
wireset.go K8s: Add apimachinery and apiserver packages (#83190) 2024-02-23 15:15:43 -05:00

Grafana Kubernetes compatible API Server

Basic Setup

[feature_toggles]
kubernetesPlaylists = true

Start Grafana:

make run

Enable dual write to etcd

Start etcd:

make devenv sources=etcd

Set storage type and etcd server address in custom.ini:

[grafana-apiserver]
storage_type = etcd
etcd_servers = 127.0.0.1:2379

Enable dual write to JSON files:

Set storage type:

[grafana-apiserver]
storage_type = file

Objects will be written to disk under the {data.path}/grafana-apiserver/ directory.

For example:

data/grafana-apiserver
├── grafana.kubeconfig
└── playlist.grafana.app
    └── playlists
        └── default
            └── hi.json

Enable aggregation

See aggregator/README.md for more information.

kubectl access

For kubectl to work, grafana needs to run over https. To simplify development, you can use:

app_mode = development

[feature_toggles]
grafanaAPIServerEnsureKubectlAccess = true 
kubernetesPlaylists = true

This will create a development kubeconfig and start a parallel ssl listener. It can be registered by navigating to the root grafana folder, then running:

export KUBECONFIG=$PWD/data/grafana-apiserver/grafana.kubeconfig
kubectl api-resources

Grafana API Access

The Kubernetes compatible API can be accessed using existing Grafana AuthN at: http://localhost:3000/apis.

The equivalent openapi docs can be seen in http://localhost:3000/swagger, select the relevant API from the dropdown in the upper right.

General Structure

The folder structure aims to follow the patterns established in standard (https://github.com/kubernetes/kubernetes)[kubernetes] projects when possible.

  • pkg/apimachinery - this is based on the structure of apimachinery. it contains types and utils that are used by both API clients and servers
  • pkg/apiserver - this is based on the structure of apiserver. it contains apiserver library code used for both standalone app apiservers and the one embedded in grafana. it depends on pkg/apimachinery
  • pkg/services/apiserver - this is where the embedded grafana API server background service is currently configured. it depends on pkg/apiserver and pkg/apimachinery. the closest analog in the Kubernetes monorepo is the kube-apiserver cmd.
  • pkg/apis - where API resource types are defined. this is based on the structure of the sample-apiserver
  • hack/update-codegen.sh - this script is used to run k8s codegen, which generates the code that is used by the API server to handle the types defined in pkg/apis. it is based on the update-codegen.sh from sample-apiserver
  • pkg/registry/apis - where all of the types in pkg/apis are registered with the API server by implementing the builder interface. this pattern is unique to grafana, and is needed to support using wire dependencies in legacy storage implementations. this is separated from pkg/apis to avoid issues with k8s codegen.
  • pkg/cmd/grafana/apiserver - this is where the apiserver is configured for the grafana apiserver CLI command, which can be used to launch standalone API servers. this will eventually be merged with the config in pkg/services/apiserver to reduce duplication.