grafana/pkg/services/grafana-apiserver
2023-11-22 15:55:37 -05:00
..
auth/authorizer K8s: Prevent user impersonation (#78555) 2023-11-22 15:55:37 -05:00
endpoints/request K8s: Move the namespace mapper to the same package that resolves them (#77101) 2023-10-25 14:13:46 -04:00
registry/generic K8s/Playlist: Support full CRUD from k8s to existing storage (#75709) 2023-11-01 12:32:24 -07:00
rest K8s: Add etcd tests for dual write (local) (#78161) 2023-11-17 14:20:54 -05:00
storage/file K8s: Add etcd tests for dual write (local) (#78161) 2023-11-17 14:20:54 -05:00
utils K8s: Improve table converter (support non runtime.Object values) (#77816) 2023-11-08 10:59:19 -08:00
common.go K8s: Add subresource to the example apiserver (#78030) 2023-11-14 05:51:58 +02:00
config_test.go Settings: Actually deprecate access to feature flags (#78073) 2023-11-13 11:39:01 -08:00
config.go FeatureToggles: Add context and and an explicit global check (#78081) 2023-11-14 12:50:27 -08:00
log.go K8s: Remove duplicate listener in production (#76583) 2023-10-23 21:42:10 +03:00
openapi.go Chore: Upgrade Go to 1.21.3 (#77304) 2023-11-01 09:17:38 -07:00
README.md K8s: JSON file storage (#75759) 2023-10-27 16:39:27 -04:00
request_handler.go K8s: Add subresource to the example apiserver (#78030) 2023-11-14 05:51:58 +02:00
service.go K8s: Add etcd tests for dual write (local) (#78161) 2023-11-17 14:20:54 -05:00
wireset.go K8s: Implement playlist api with k8s client (#77405) 2023-10-31 10:26:39 -07:00

Grafana Kubernetes compatible API Server

Basic Setup

app_mode = development

[feature_toggles]
grafanaAPIServer = true
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

kubectl access

From the root of the Grafanaa repository, run the following:

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.