mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 16:34:31 +00:00
Traefik ingress (svc-knoe-ingress) routes db.prole.org to service/oauth2-proxy:80 in knoe-system. oauth2-proxy itself runs in supabase namespace, so this ExternalName alias bridges the gap.
15 lines
463 B
YAML
15 lines
463 B
YAML
# ExternalName service so the Traefik ingress in knoe-system can route
|
|
# db.prole.org to oauth2-proxy running in the supabase namespace.
|
|
# The ingress references service/oauth2-proxy:80 in knoe-system; this
|
|
# alias resolves to oauth2-proxy.supabase.svc.cluster.local:80.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: oauth2-proxy
|
|
namespace: knoe-system
|
|
spec:
|
|
type: ExternalName
|
|
externalName: oauth2-proxy.supabase.svc.cluster.local
|
|
ports:
|
|
- port: 80
|