-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added kustomization file to generate configmaps for example dashboards (
#633) * added kustomization file to generate configmaps for example dashboards * added new line to keep linter happy :) * removed tab on new line * added configmaps and volume mounts for grafana dashboards * disabled suffix hash * added dashboard import to observability stack * oh mr. linty, please enjoy your new line :)
- Loading branch information
1 parent
c525838
commit 038f4fb
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
# Grafana dashboards as configmaps | ||
configMapGenerator: | ||
- name: grafana-appdeveloper | ||
namespace: monitoring | ||
files: | ||
- ./app_developer.json | ||
- name: grafana-businessuser | ||
namespace: monitoring | ||
files: | ||
- ./business_user.json | ||
- name: grafana-platformengineer | ||
namespace: monitoring | ||
files: | ||
- ./platform_engineer.json | ||
|
||
generatorOptions: | ||
disableNameSuffixHash: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters