Basic impl added

This commit is contained in:
2025-10-16 21:22:51 -07:00
parent 097ca99788
commit 9087a710e5
43 changed files with 7616 additions and 107 deletions
+26
View File
@@ -0,0 +1,26 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: notifier-ingress
labels:
app: notifier
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-prod
nginx.ingress.kubernetes.io/ssl-redirect: "true"
spec:
tls:
- hosts:
- notifier.example.com
secretName: notifier-tls
rules:
- host: notifier.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: notifier-rest
port:
number: 8080