Skip to content

Commit ecbb52c

Browse files
authored
Merge pull request #1375 from porter-dev/ym/grafana
feat: adds the grafana helm chart
2 parents e544741 + 054aec5 commit ecbb52c

40 files changed

+7549
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.DS_Store

Tiltfile

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ local_resource(
8080
helm cm-push addons/kube-image-keeper local && \
8181
helm cm-push addons/prometheus-adapter local && \
8282
helm cm-push addons/langfuse local && \
83+
helm cm-push addons/grafana local && \
8384
helm repo update local
8485
''',
8586
deps=[

addons/grafana/.helmignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*~
18+
# Various IDEs
19+
.vscode
20+
.project
21+
.idea/
22+
*.tmproj
23+
OWNERS

addons/grafana/Chart.yaml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
apiVersion: v2
2+
name: grafana
3+
version: 8.4.4
4+
appVersion: 11.1.3
5+
kubeVersion: "^1.8.0-0"
6+
description: The leading tool for querying and visualizing time series and metrics.
7+
home: https://grafana.com
8+
icon: https://artifacthub.io/image/b4fed1a7-6c8f-4945-b99d-096efa3e4116
9+
sources:
10+
- https://github.com/grafana/grafana
11+
- https://github.com/grafana/helm-charts
12+
annotations:
13+
"artifacthub.io/license": Apache-2.0
14+
"artifacthub.io/links": |
15+
- name: Chart Source
16+
url: https://github.com/grafana/helm-charts
17+
- name: Upstream Project
18+
url: https://github.com/grafana/grafana
19+
maintainers:
20+
- name: zanhsieh
21+
22+
- name: rtluckie
23+
24+
- name: maorfr
25+
26+
- name: Xtigyro
27+
28+
- name: torstenwalter
29+
30+
- name: jkroepke
31+
32+
type: application
33+
keywords:
34+
- monitoring
35+
- metric

addons/grafana/README.md

+781
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)