From ec176425979ce91f4991d205cb43221380ec857b Mon Sep 17 00:00:00 2001 From: "groombook-engineer[bot]" <269742240+groombook-engineer[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 17:30:10 +0000 Subject: [PATCH] Add DragonflyDB Service template --- .../templates/dragonfly-service.yaml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 charts/groombook/templates/dragonfly-service.yaml diff --git a/charts/groombook/templates/dragonfly-service.yaml b/charts/groombook/templates/dragonfly-service.yaml new file mode 100644 index 0000000..f8eb7e4 --- /dev/null +++ b/charts/groombook/templates/dragonfly-service.yaml @@ -0,0 +1,20 @@ +{{- if and .Values.dragonfly.enabled (eq .Values.dragonfly.mode "integrated") }} +apiVersion: v1 +kind: Service +metadata: + name: {{ include "groombook.fullname" . }}-dragonfly + labels: + {{- include "groombook.labels" . | nindent 4 }} + app.kubernetes.io/component: dragonfly +spec: + type: {{ .Values.dragonfly.integrated.service.type }} + selector: + {{- include "groombook.selectorLabels" . | nindent 4 }} + app.kubernetes.io/component: dragonfly + ports: + - port: {{ .Values.dragonfly.integrated.service.port }} + targetPort: 6379 + protocol: TCP + name: redis +{{- end }} +