51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: supabase-nextgen-kong-ingress
|
|
namespace: nextgen
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
nginx.ingress.kubernetes.io/proxy-body-size: "500m"
|
|
spec:
|
|
ingressClassName: nginx
|
|
tls:
|
|
- hosts:
|
|
- api.next-gen.techarvest.co.zw
|
|
secretName: supabase-nextgen-tls
|
|
rules:
|
|
- host: api.next-gen.techarvest.co.zw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: supabase-nextgen-supabase-kong
|
|
port:
|
|
number: 8000
|
|
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: supabase-nextgen-studio-ingress
|
|
namespace: nextgen
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
spec:
|
|
ingressClassName: nginx
|
|
tls:
|
|
- hosts:
|
|
- studio.next-gen.techarvest.co.zw
|
|
secretName: supabase-nextgen-studio-tls
|
|
rules:
|
|
- host: studio.next-gen.techarvest.co.zw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: supabase-nextgen-supabase-studio
|
|
port:
|
|
number: 3000
|