Files
FamilyHUB/infra/k8s/ingress.yaml
T
admin 0bedc8d508
Build and Deploy / build-and-deploy (push) Successful in 37s
added k8s manifests, removed webhook server
2026-05-23 13:40:44 +03:00

19 lines
422 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: family-hub
namespace: family-hub
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
rules:
- host: family-hub.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: family-hub
port:
number: 9876