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,12 @@
{{- if .Values.mongodb.enabled }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "notely.mongodb.fullname" . }}-credentials
labels:
{{- include "notely.labels" . | nindent 4 }}
type: Opaque
stringData:
username: {{ .Values.mongodb.auth.username | quote }}
password: {{ .Values.mongodb.auth.password | quote }}
{{- end }}