add helm chart

This commit is contained in:
Taylor Wilsdon
2025-08-06 10:14:01 -04:00
parent 8d55affe81
commit 4c49529808
13 changed files with 703 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{{- if .Values.env }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "workspace-mcp.fullname" . }}-config
labels:
{{- include "workspace-mcp.labels" . | nindent 4 }}
data:
{{- range $key, $value := .Values.env }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}