File tree Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : grafana
3
- version : 8.0.0
3
+ version : 8.0.1
4
4
appVersion : 11.0.0
5
5
kubeVersion : " ^1.8.0-0"
6
6
description : The leading tool for querying and visualizing time series and metrics.
Original file line number Diff line number Diff line change @@ -183,6 +183,7 @@ need to instead set `global.imageRegistry`.
183
183
| ` sidecar.dashboards.provider.name ` | Unique name of the grafana provider | ` sidecarProvider ` |
184
184
| ` sidecar.dashboards.provider.orgid ` | Id of the organisation, to which the dashboards should be added | ` 1 ` |
185
185
| ` sidecar.dashboards.provider.folder ` | Logical folder in which grafana groups dashboards | ` "" ` |
186
+ | ` sidecar.dashboards.provider.folderUid ` | Allows you to specify the static UID for the logical folder above | ` "" ` |
186
187
| ` sidecar.dashboards.provider.disableDelete ` | Activate to avoid the deletion of imported dashboards | ` false ` |
187
188
| ` sidecar.dashboards.provider.allowUiUpdates ` | Allow updating provisioned dashboards from the UI | ` false ` |
188
189
| ` sidecar.dashboards.provider.type ` | Provider type | ` file ` |
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ provider.yaml: |-
146
146
orgId: { { .Values.sidecar.dashboards.provider.orgid } }
147
147
{ {- if not .Values.sidecar.dashboards.provider.foldersFromFilesStructure } }
148
148
folder: '{ { .Values.sidecar.dashboards.provider.folder } }'
149
+ folderUid: '{ { .Values.sidecar.dashboards.provider.folderUid } }'
149
150
{ {- end } }
150
151
type: { { .Values.sidecar.dashboards.provider.type } }
151
152
disableDeletion: { { .Values.sidecar.dashboards.provider.disableDelete } }
Original file line number Diff line number Diff line change @@ -963,6 +963,8 @@ sidecar:
963
963
orgid : 1
964
964
# folder in which the dashboards should be imported in grafana
965
965
folder : ' '
966
+ # <string> folder UID. will be automatically generated if not specified
967
+ folderUid : ' '
966
968
# type of the provider
967
969
type : file
968
970
# disableDelete to activate a import-only behaviour
You can’t perform that action at this time.
0 commit comments