Skip to content

Commit 07b128d

Browse files
Merge branch 'main' into mburgos/Adding_commonLabels_to_tempo-distributed
Signed-off-by: Martin Burgos <[email protected]>
2 parents 94c6993 + 1f37444 commit 07b128d

File tree

13 files changed

+44
-17
lines changed

13 files changed

+44
-17
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
# Unless a later match takes precedence, they will be requested for review when someone opens a pull request.
77
* @grafana/helm-charts-admins
88

9-
/charts/grafana/ @jkroepke @maorfr @torstenwalter @Xtigyro @zanhsieh
9+
/charts/grafana/ @jkroepke @maorfr @torstenwalter @Xtigyro @zanhsieh @QuentinBisson
1010
/charts/loki-distributed/ @grafana/loki-squad @unguiculus @Whyeasy
1111
/charts/loki-canary/ @grafana/loki-squad @unguiculus @Whyeasy
1212
/charts/promtail/ @grafana/loki-squad @unguiculus @Whyeasy
1313
/charts/tempo/ @grafana/tempo @Sheikh-Abubaker @dgzlopes @swartz-k @BitProcessor @faustodavid
14-
/charts/tempo-distributed/ @grafana/tempo @Sheikh-Abubaker @swartz-k @BitProcessor @faustodavid
14+
/charts/tempo-distributed/ @grafana/tempo @Sheikh-Abubaker @swartz-k @BitProcessor @faustodavid @QuentinBisson
1515
/charts/enterprise-metrics/ @grafana/mimir-maintainers
1616
/charts/rollout-operator/ @grafana/mimir-maintainers
1717
/charts/enterprise-logs/ @grafana/loki-squad
1818
/charts/tempo-vulture/ @grafana/tempo @Whyeasy @dgzlopes
1919
/charts/synthetic-monitoring-agent/ @torstenwalter @zanhsieh
2020
/charts/agent-operator/ @grafana/grafana-agent-maintainers
2121
/charts/cloudcost-exporter/ @grafana/platform-monitoring
22-
/charts/grafana-mcp/ @jkroepke @Sheikh-Abubaker @KyriosGN0
22+
/charts/grafana-mcp/ @jkroepke @Sheikh-Abubaker @KyriosGN0 @QuentinBisson
2323
/charts/pdc-agent/ @grafana/grafana-datasources-core-services

charts/grafana-mcp/Chart.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: grafana-mcp
3-
version: 0.1.3
4-
appVersion: latest
3+
version: 0.2.0
4+
appVersion: 0.7.6
55
kubeVersion: "^1.8.0-0"
66
description: MCP server for Grafana.
77
home: https://grafana.com
@@ -23,6 +23,8 @@ maintainers:
2323
2424
- name: KyriosGN0
2525
26+
- name: QuentinBisson
27+
2628
type: application
2729
keywords:
2830
- monitoring

charts/grafana-mcp/README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ helm delete my-release
3737

3838
The command removes all the Kubernetes components associated with the chart and deletes the release.
3939

40+
## Upgrading
41+
42+
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
43+
44+
### From Chart versions < 0.1.3
45+
If you are upgrading from a chart version older than 0.1.3, we have changed the image to be pulled from
46+
`grafana/mcp-grafana` instead of `mcp/grafana` and the default tag to be the chart's appVersion instead of `latest`.
47+
4048
## Values
4149

4250
| Key | Type | Default | Description |
@@ -63,11 +71,11 @@ The command removes all the Kubernetes components associated with the chart and
6371
| grafana.apiKeySecret.name | string | `""` | Name of the secret containing the API key |
6472
| grafana.url | string | `"http://grafana:3000"` | Grafana URL (should point to the main Grafana service) |
6573
| hostAliases | list | `[]` | Host aliases |
66-
| image | object | `{"pullPolicy":"IfNotPresent","registry":"docker.io","repository":"mcp/grafana","tag":"latest"}` | Image configuration |
74+
| image | object | `{"pullPolicy":"IfNotPresent","registry":"docker.io","repository":"grafana/mcp-grafana","tag":""}` | Image configuration |
6775
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
6876
| image.registry | string | `"docker.io"` | The Docker registry |
69-
| image.repository | string | `"mcp/grafana"` | The Docker repository |
70-
| image.tag | string | `"latest"` | Image tag |
77+
| image.repository | string | `"grafana/mcp-grafana"` | The Docker repository |
78+
| image.tag | string | `""` | Image tag |
7179
| imagePullSecrets | list | `[]` | Image pull secrets |
7280
| ingress | object | `{"annotations":{},"className":"","enabled":false,"hosts":[{"host":"mcp-grafana.local","paths":[{"path":"/","pathType":"Prefix"}]}],"labels":{},"tls":[]}` | Ingress configuration |
7381
| ingress.annotations | object | `{}` | Ingress annotations |

charts/grafana-mcp/README.md.gotmpl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,12 @@ helm delete my-release
3333

3434
The command removes all the Kubernetes components associated with the chart and deletes the release.
3535

36+
## Upgrading
37+
38+
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
39+
40+
### From Chart versions < 0.1.3
41+
If you are upgrading from a chart version older than 0.1.3, we have changed the image to be pulled from
42+
`grafana/mcp-grafana` instead of `mcp/grafana` and the default tag to be the chart's appVersion instead of `latest`.
43+
3644
{{ template "chart.valuesSection" . }}

charts/grafana-mcp/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ spec:
7373
- name: mcp-grafana
7474
{{- $registry := .Values.image.registry -}}
7575
{{- if $registry }}
76-
image: "{{ $registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}"
76+
image: "{{ $registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
7777
{{- else }}
78-
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
78+
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
7979
{{- end }}
8080
imagePullPolicy: {{ .Values.image.pullPolicy }}
8181
{{- with .Values.readinessProbe }}

charts/grafana-mcp/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ image:
1313
# -- The Docker registry
1414
registry: docker.io
1515
# -- The Docker repository
16-
repository: mcp/grafana
16+
repository: grafana/mcp-grafana
1717
# -- Image tag
18-
tag: "latest"
18+
tag: ""
1919
# -- Image pull policy
2020
pullPolicy: IfNotPresent
2121

charts/grafana/Chart.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: grafana
3-
version: 10.0.0
4-
appVersion: 12.1.1
3+
version: 10.1.2
4+
appVersion: 12.2.0
55
kubeVersion: "^1.8.0-0"
66
description: The leading tool for querying and visualizing time series and metrics.
77
home: https://grafana.com
@@ -29,6 +29,8 @@ maintainers:
2929
3030
- name: jkroepke
3131
32+
- name: QuentinBisson
33+
3234
type: application
3335
keywords:
3436
- monitoring

charts/grafana/templates/secret-env.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ metadata:
66
namespace: {{ include "grafana.namespace" . }}
77
labels:
88
{{- include "grafana.labels" . | nindent 4 }}
9+
app.kubernetes.io/component: env-secret
910
type: Opaque
1011
data:
1112
{{- range $key, $val := .Values.envRenderSecret }}

charts/grafana/templates/secret.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ metadata:
66
namespace: {{ include "grafana.namespace" . }}
77
labels:
88
{{- include "grafana.labels" . | nindent 4 }}
9+
app.kubernetes.io/component: admin-secret
910
{{- with .Values.annotations }}
1011
annotations:
1112
{{- toYaml . | nindent 4 }}

charts/rollout-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: rollout-operator
33
description: "Grafana rollout-operator"
44
type: application
5-
version: 0.33.1
6-
appVersion: v0.29.0
5+
version: 0.35.1
6+
appVersion: v0.31.1
77
home: https://github.com/grafana/rollout-operator
88
kubeVersion: ^1.10.0-0

0 commit comments

Comments
 (0)