haven notify :)
Some checks failed
Check scripts syntax / check-scripts-syntax (push) Successful in 37s
Haven Notify Build and Deploy / build_haven_notify (push) Failing after 3m30s
Haven Notify Build and Deploy / deploy_haven_notify (push) Has been skipped

This commit is contained in:
2025-08-16 21:53:37 -03:00
parent df11d9dcf8
commit 72ec3e2477
4 changed files with 224 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
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
---
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
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
rules:
- host: notify.haven
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: haven-notify
port:
number: 8080