railiance-apps/manifests/coulomb-social-ingress.yaml
tegwick ca804ef148
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Deploy coulomb-social image tag as string; pin 7067145
Helm --set-string for numeric git SHAs (InvalidImageName fix).
Ingress entrypoints web+websecure; values pin first release tag.
2026-08-09 02:32:37 +02:00

27 lines
790 B
YAML

# 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: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
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