feat(manifests): Add configuration for scriptscribe

This commit is contained in:
2025-11-29 01:03:22 +05:30
parent 4ff20e3f41
commit 73c85dd779
15 changed files with 207 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ingress-rules
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
rules:
- host: scriptscribe.whyredfire.tech
http:
paths:
- path: /api
pathType: Prefix
backend:
service:
name: backend
port:
number: 8000
- path: /
pathType: Prefix
backend:
service:
name: frontend
port:
number: 80