first commit

This commit is contained in:
domrichardson
2026-03-30 11:27:28 +01:00
commit 18c5933307
19 changed files with 667 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{{- if .Values.redis.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "notely.redis.fullname" . }}
labels:
{{- include "notely.labels" . | nindent 4 }}
spec:
type: ClusterIP
ports:
- port: {{ .Values.redis.service.port }}
targetPort: redis
protocol: TCP
name: redis
selector:
app.kubernetes.io/name: {{ include "notely.name" . }}-redis
app.kubernetes.io/instance: {{ .Release.Name }}
{{- end }}