From 919c6dc2632710f34d10166a1b165bd42f81409b Mon Sep 17 00:00:00 2001 From: Wenxuan Date: Mon, 20 Jun 2022 20:02:37 +0800 Subject: [PATCH] playground: use test-cluster as dashboard name (#1920) --- components/playground/grafana.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/playground/grafana.go b/components/playground/grafana.go index a192668e0c..d56b9e55e6 100644 --- a/components/playground/grafana.go +++ b/components/playground/grafana.go @@ -126,6 +126,7 @@ providers: folder: %s type: file disableDeletion: false + allowUiUpdates: true editable: true updateIntervalSeconds: 30 options: @@ -145,7 +146,7 @@ func makeSureDir(fname string) error { return os.MkdirAll(filepath.Dir(fname), 0755) } -var clusterName string = "playground" +var clusterName = "Test-Cluster" // dir should contains files untar the grafana. // return not error iff the Cmd is started successfully.