feat: add chart source

This commit is contained in:
merlin
2025-11-06 14:51:57 +08:00
commit 4587944164
80 changed files with 9621 additions and 0 deletions

13
templates/secret.yaml Normal file
View File

@@ -0,0 +1,13 @@
apiVersion: v1
kind: Secret
metadata:
name: blog-backend
labels:
{{- include "chart.labels" . | nindent 4 }}
app.kubernetes.io/component: backend
data:
{{- if .Values.secrets }}
{{- range $key, $value := .Values.secrets }}
{{ $key | quote }}: {{ $value | toString | b64enc | quote }}
{{- end }}
{{- end }}