mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
30 lines
561 B
YAML
30 lines
561 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: supabase-ingress
|
|
namespace: supabase
|
|
annotations:
|
|
kubernetes.io/ingress.class: traefik
|
|
spec:
|
|
rules:
|
|
- host: db.knoe.org
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: kong
|
|
port:
|
|
number: 8000
|
|
- host: supabase.knoe.org
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: kong
|
|
port:
|
|
number: 8000
|