chore: Add Uptime Kuma Helm chart with deployment, service, ingress, PVC, and backup CronJob templates

This commit is contained in:
sha
2026-04-10 22:33:28 +03:00
parent 5c86c59a26
commit 694901f573
7 changed files with 243 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}
labels:
app.kubernetes.io/name: {{ .Chart.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
type: ClusterIP
selector:
app: {{ .Release.Name }}
ports:
- name: http
port: {{ .Values.port }}
targetPort: {{ .Values.port }}
protocol: TCP