feat: Add ntfy Helm chart with deployment, service, ingress, configmap, and values configuration

This commit is contained in:
sha
2026-04-19 04:22:46 +03:00
parent e0c2043b08
commit 259fbb8137
7 changed files with 214 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{{- if and .Values.config (not .Values.existingConfigMap) }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-config
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
data:
server.yml: |
{{- .Values.config | nindent 4 }}
{{- end }}