Add Helm chart scaffold with Chart.yaml, values.yaml, and helpers #132

Merged
groombook-engineer[bot] merged 16 commits from helm-chart-scaffold into main 2026-03-27 18:36:29 +00:00
Showing only changes of commit 0a117e8c4a - Show all commits
@@ -0,0 +1,13 @@
{{- if .Values.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "groombook.serviceAccountName" . }}
labels:
{{- include "groombook.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}