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 bf92039876 - Show all commits
@@ -0,0 +1,15 @@
{{- if and .Values.dragonfly.enabled (eq .Values.dragonfly.mode "operator") }}
apiVersion: dragonflydb.io/v1alpha1
kind: Dragonfly
metadata:
name: {{ include "groombook.fullname" . }}-dragonfly
labels:
{{- include "groombook.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.dragonfly.operator.replicas }}
{{- with .Values.dragonfly.operator.resources }}
resources:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}