Skip to content

Commit dc7572f

Browse files
Merge pull request #3874 from Backend-sungyoon/update/grafana-mcp-serviceaccount
[grafana-mcp] Fix service account condition from create to enabled
2 parents 48d1c26 + 06000b4 commit dc7572f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

charts/grafana-mcp/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: grafana-mcp
3-
version: 0.1.1
3+
version: 0.1.2
44
appVersion: latest
55
kubeVersion: "^1.8.0-0"
66
description: MCP server for Grafana.

charts/grafana-mcp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ The command removes all the Kubernetes components associated with the chart and
105105
| service.sessionAffinity | string | `""` | Session affinity |
106106
| service.sessionAffinityConfig | object | `{}` | Session affinity config |
107107
| service.type | string | `"ClusterIP"` | Service type |
108-
| serviceAccount | object | `{"annotations":{},"automountServiceAccountToken":false,"enabled":true,"labels":{},"name":""}` | Service account Configuration |
108+
| serviceAccount | object | `{"annotations":{},"automountServiceAccountToken":false,"create":true,"labels":{},"name":""}` | Service account Configuration |
109109
| serviceAccount.annotations | object | `{}` | Annotations for the service account |
110110
| serviceAccount.automountServiceAccountToken | bool | `false` | Automount service account token |
111-
| serviceAccount.enabled | bool | `true` | Enable service account |
111+
| serviceAccount.create | bool | `true` | Enable service account |
112112
| serviceAccount.labels | object | `{}` | Labels for the service account |
113113
| serviceAccount.name | string | `""` | Name of the service account |
114114
| startupProbe | object | `{}` | MCP server Startup probe configuration |

charts/grafana-mcp/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ startupProbe: {}
6666
# -- Service account Configuration
6767
serviceAccount:
6868
# -- Enable service account
69-
enabled: true
69+
create: true
7070
# -- Name of the service account
7171
name: ""
7272
# -- Annotations for the service account

0 commit comments

Comments
 (0)