# Ingress for coulomb.social (apply after first chart deploy). # Requires cert-manager ClusterIssuer and DNS for coulomb.social → cluster. 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: websecure spec: ingressClassName: traefik tls: - hosts: [coulomb.social] secretName: coulomb-social-tls rules: - host: coulomb.social http: paths: - path: / pathType: Prefix backend: service: name: coulomb-social port: number: 80