File tree Expand file tree Collapse file tree 8 files changed +40
-11
lines changed Expand file tree Collapse file tree 8 files changed +40
-11
lines changed Original file line number Diff line number Diff line change 19
19
/charts /synthetic-monitoring-agent / @ torstenwalter @ zanhsieh
20
20
/charts /agent-operator / @ grafana/grafana-agent-maintainers
21
21
/charts /cloudcost-exporter / @ grafana/platform-monitoring
22
- /charts /grafana-mcp / @ jkroepke @ Sheikh-Abubaker
22
+ /charts /grafana-mcp / @ jkroepke @ Sheikh-Abubaker @ KyriosGN0
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : grafana-mcp
3
- version : 1.0 .0
4
- appVersion : 1.0.0
3
+ version : 0.1 .0
4
+ appVersion : latest
5
5
kubeVersion : " ^1.8.0-0"
6
6
description : MCP server for Grafana.
7
7
home : https://grafana.com
@@ -21,6 +21,8 @@ maintainers:
21
21
22
22
- name : jkroepke
23
23
24
+ - name : KyriosGN0
25
+
24
26
type : application
25
27
keywords :
26
28
- monitoring
Original file line number Diff line number Diff line change 1
1
{{ template "chart.header" . }}
2
2
3
- {{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
4
-
5
3
{{ template "chart.description" . }}
6
4
7
5
{{ template "chart.sourcesSection" . }}
Original file line number Diff line number Diff line change
1
+ grafana :
2
+ apiKey : " test"
3
+
1
4
affinity :
2
5
podAntiAffinity :
3
6
preferredDuringSchedulingIgnoredDuringExecution :
Original file line number Diff line number Diff line change 78
78
image : " {{ .Values.image.repository }}:{{ .Values.image.tag }}"
79
79
{{- end }}
80
80
imagePullPolicy : {{ .Values.image.pullPolicy }}
81
+ {{- with .Values.readinessProbe }}
82
+ readinessProbe :
83
+ {{- toYaml . | nindent 12 }}
84
+ {{- end }}
85
+ {{- with .Values.livenessProbe }}
86
+ livenessProbe :
87
+ {{- toYaml . | nindent 12 }}
88
+ {{- end }}
89
+ {{- with .Values.startupProbe }}
90
+ startupProbe :
91
+ {{- toYaml . | nindent 12 }}
92
+ {{- end }}
81
93
{{- with .Values.containerSecurityContext }}
82
94
securityContext :
83
95
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ metadata:
11
11
{{- toYaml . | nindent 4 }}
12
12
{{- end }}
13
13
type : Opaque
14
- stringData :
15
- api-key : {{ .Values.grafana.apiKey }}
14
+ data :
15
+ api-key : {{ .Values.grafana.apiKey | toString | b64enc }}
16
16
{{- end }}
Original file line number Diff line number Diff line change 1
1
{{- if .Values.serviceAccount.create }}
2
2
apiVersion : v1
3
3
kind : ServiceAccount
4
- automountServiceAccountToken : {{ .Values.serviceAccount.autoMount | default .Values.serviceAccount. automountServiceAccountToken }}
4
+ automountServiceAccountToken : {{ .Values.serviceAccount.automountServiceAccountToken }}
5
5
metadata :
6
6
labels :
7
- {{- include "grafana.labels" . | nindent 4 }}
7
+ {{- include "grafana-mcp .labels" . | nindent 4 }}
8
8
{{- with .Values.serviceAccount.labels }}
9
9
{{- toYaml . | nindent 4 }}
10
10
{{- end }}
11
11
{{- with .Values.serviceAccount.annotations }}
12
12
annotations :
13
13
{{- tpl (toYaml . | nindent 4) $ }}
14
14
{{- end }}
15
- name : {{ include "grafana.serviceAccountName" . }}
16
- namespace : {{ include "grafana.namespace" . }}
15
+ name : {{ include "grafana-mcp .serviceAccountName" . }}
16
+ namespace : {{ include "grafana-mcp .namespace" . }}
17
17
{{- end }}
Original file line number Diff line number Diff line change @@ -53,6 +53,16 @@ envValueFrom: {}
53
53
# -- Environment variables from ConfigMaps or Secrets
54
54
envFrom : []
55
55
56
+ # -- MCP server Readiness probe configuration
57
+ readinessProbe : {}
58
+ #
59
+
60
+ # -- MCP server Liveness probe configuration
61
+ livenessProbe : {}
62
+
63
+ # -- MCP server Startup probe configuration
64
+ startupProbe : {}
65
+
56
66
# -- Service account Configuration
57
67
serviceAccount :
58
68
# -- Enable service account
@@ -61,6 +71,10 @@ serviceAccount:
61
71
name : " "
62
72
# -- Annotations for the service account
63
73
annotations : {}
74
+ # -- Labels for the service account
75
+ labels : {}
76
+ # -- Automount service account token
77
+ automountServiceAccountToken : false
64
78
65
79
# -- Service configuration
66
80
service :
You can’t perform that action at this time.
0 commit comments