Files
google-mcp/helm-chart/workspace-mcp/templates/serviceaccount.yaml
jason 395f0e2029
Some checks failed
Check Maintainer Edits Enabled / check-maintainer-edits (pull_request) Has been cancelled
Check Maintainer Edits Enabled / check-maintainer-edits-internal (pull_request) Has been cancelled
Docker Build and Push to GHCR / build-and-push (pull_request) Has been cancelled
Ruff / ruff (pull_request) Has been cancelled
feat: initial commit from workspace-mcp
2026-03-17 19:23:33 -05:00

12 lines
331 B
YAML

{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "workspace-mcp.serviceAccountName" . }}
labels:
{{- include "workspace-mcp.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}