Skip to content

Commit 4193cf5

Browse files
fix: Update values.yaml to use 'create' for consistency with template
Signed-off-by: backend-sungyoon <[email protected]>
1 parent 2d3234a commit 4193cf5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/grafana-mcp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The command removes all the Kubernetes components associated with the chart and
108108
| serviceAccount | object | `{"annotations":{},"automountServiceAccountToken":false,"enabled":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/templates/serviceaccount.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if .Values.serviceAccount.enabled }}
1+
{{- if .Values.serviceAccount.create }}
22
apiVersion: v1
33
kind: ServiceAccount
44
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}

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)