Document AAAA parking pitfall for activity.coulomb.social. Use web+websecure entrypoints and Authelia middleware on SSO Ingress manifests.
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
# HTTPS SSO front door for activity-core ops console + API.
|
|
# Requires DNS:
|
|
# activity.coulomb.social A → 92.205.62.239
|
|
# (no stale AAAA / parking records — IPv6 must not point at IONOS parking)
|
|
# ACTIVITY-WP-0025
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: actcore-ops
|
|
namespace: activity-core
|
|
labels:
|
|
app.kubernetes.io/name: actcore-api
|
|
app.kubernetes.io/part-of: activity-core
|
|
app.kubernetes.io/component: sso-ingress
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
# HTTP-01 ACME needs web (80); browsers use websecure (443)
|
|
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
|
|
# Prefer ACME solver path over this catch-all when both match
|
|
traefik.ingress.kubernetes.io/router.priority: "1"
|
|
spec:
|
|
ingressClassName: traefik
|
|
tls:
|
|
- hosts:
|
|
- activity.coulomb.social
|
|
secretName: actcore-ops-tls
|
|
rules:
|
|
- host: activity.coulomb.social
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: actcore-api
|
|
port:
|
|
number: 8010
|