activity-core/k8s/railiance/32-ingress-temporal-sso.yaml
tegwick 3bd005acc9
All checks were successful
CI Smoke / host-smoke (push) Successful in 1s
CI Smoke / container-smoke (push) Successful in 2s
Prefer temporal.coulomb.social; fix Ingress ACME entrypoints
Document AAAA parking pitfall for activity.coulomb.social. Use web+websecure
entrypoints and Authelia middleware on SSO Ingress manifests.
2026-07-22 01:29:23 +02:00

35 lines
1.1 KiB
YAML

# HTTPS SSO front door for Temporal Web UI.
# Requires DNS: temporal.coulomb.social A → 92.205.62.239
# ACTIVITY-WP-0025
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: actcore-temporal-ui
namespace: activity-core
labels:
app.kubernetes.io/name: actcore-temporal-ui
app.kubernetes.io/part-of: activity-core
app.kubernetes.io/component: sso-ingress
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
traefik.ingress.kubernetes.io/router.middlewares: activity-core-authelia-forwardauth@kubernetescrd
traefik.ingress.kubernetes.io/router.priority: "1"
spec:
ingressClassName: traefik
tls:
- hosts:
- temporal.coulomb.social
secretName: actcore-temporal-ui-tls
rules:
- host: temporal.coulomb.social
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: actcore-temporal-ui
port:
number: 8080