Use absolute jsonnet import paths

This should be the way forward when importing libraries in jsonnet. It's
closer to how Go imports look and makes it more obvious where packages
live.

This is not breaking anything, as the old imports were already symlinks
to the now directly used directories.

Signed-off-by: Matthias Loibl <mail@matthiasloibl.com>
This commit is contained in:
Matthias Loibl 2020-10-20 11:34:43 +02:00
parent 9c9c636305
commit 77e76485c0
No known key found for this signature in database
GPG key ID: 78A796CA74CA38BA
3 changed files with 4 additions and 4 deletions

View file

@ -1,10 +1,10 @@
local grafana = import 'grafonnet/grafana.libsonnet';
local grafana = import 'github.com/grafana/grafonnet-lib/grafonnet/grafana.libsonnet';
local dashboard = grafana.dashboard;
local row = grafana.row;
local prometheus = grafana.prometheus;
local template = grafana.template;
local graphPanel = grafana.graphPanel;
local promgrafonnet = import 'promgrafonnet/promgrafonnet.libsonnet';
local promgrafonnet = import 'github.com/kubernetes-monitoring/kubernetes-mixin/lib/promgrafonnet/promgrafonnet.libsonnet';
local gauge = promgrafonnet.gauge;
{

View file

@ -1,4 +1,4 @@
local g = import 'grafana-builder/grafana.libsonnet';
local g = import 'github.com/grafana/jsonnet-libs/grafana-builder/grafana.libsonnet';
{
grafanaDashboards+:: {

View file

@ -29,5 +29,5 @@
"version": "master"
}
],
"legacyImports": true
"legacyImports": false
}