From ddfca37fba5c95a67a9440ed4c3ec479d5f334e8 Mon Sep 17 00:00:00 2001 From: Jose Henrique Date: Mon, 13 Jul 2026 12:06:28 -0300 Subject: [PATCH] infra: add haven-notify Deployment/Service/Ingress manifest Moved from server-scripts/haven-notify/deploy. Haven Notify is an internal Discord webhook notifier, catalogued under infra/ alongside Beszel/WireGuard/Code Config per the repo README. --- infra/haven-notify.yaml | 71 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 infra/haven-notify.yaml diff --git a/infra/haven-notify.yaml b/infra/haven-notify.yaml new file mode 100644 index 0000000..00495ed --- /dev/null +++ b/infra/haven-notify.yaml @@ -0,0 +1,71 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: haven-notify + labels: + app: haven-notify +spec: + replicas: 1 + selector: + matchLabels: + app: haven-notify + template: + metadata: + labels: + app: haven-notify + spec: + containers: + - name: haven-notify + image: git.ivanch.me/ivanch/haven-notify:latest + imagePullPolicy: Always + ports: + - containerPort: 8080 + env: + - name: WEBHOOK_URL + valueFrom: + secretKeyRef: + name: discord-webhook + key: HAVEN_WEBHOOK_URL + readinessProbe: + httpGet: + path: /ready + port: 8080 + initialDelaySeconds: 5 + periodSeconds: 10 + livenessProbe: + httpGet: + path: /live + port: 8080 + initialDelaySeconds: 5 + periodSeconds: 10 +--- +apiVersion: v1 +kind: Service +metadata: + name: haven-notify +spec: + selector: + app: haven-notify + ports: + - protocol: TCP + port: 8080 + targetPort: 8080 +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: haven-notify + namespace: default +spec: + ingressClassName: nginx + rules: + - host: notify.haven + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: haven-notify + port: + number: 8080