railiance-apps/manifests/coulomb-social-ingress.yaml
tegwick 8eca75735d
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Point coulomb-social Helm and ingress at app.coulomb.social
Public parallel host; leave apex coulomb.social for Bubble until cutover.
2026-08-09 23:20:31 +02:00

28 lines
878 B
YAML

# Ingress for the Railiance rebuild on app.coulomb.social.
# Apex coulomb.social stays on Bubble until content + self-registration cutover.
# Requires cert-manager ClusterIssuer and DNS app.coulomb.social → cluster IP.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: coulomb-social
namespace: coulomb-social
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
tls:
- hosts: [app.coulomb.social]
secretName: coulomb-social-tls
rules:
- host: app.coulomb.social
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: coulomb-social
port:
number: 80