Activate ACTIVITY-WP-0025: Authelia SSO ingress for ops and Temporal UI
Mark workplan active. Add Traefik ForwardAuth middleware and Ingress manifests for activity.coulomb.social and activity-temporal.coulomb.social. Prefer Authelia SSO identity for ops mutations; document DNS gate and fleet pattern (docs/ops-sso-access.md).
This commit is contained in:
parent
7e71c0c837
commit
f885697e96
13 changed files with 366 additions and 57 deletions
34
k8s/railiance/32-ingress-temporal-sso.yaml
Normal file
34
k8s/railiance/32-ingress-temporal-sso.yaml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# HTTPS SSO front door for Temporal Web UI.
|
||||
# Requires DNS: activity-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: websecure
|
||||
traefik.ingress.kubernetes.io/router.tls: "true"
|
||||
traefik.ingress.kubernetes.io/router.middlewares: activity-core-authelia-forwardauth@kubernetescrd
|
||||
spec:
|
||||
ingressClassName: traefik
|
||||
tls:
|
||||
- hosts:
|
||||
- activity-temporal.coulomb.social
|
||||
secretName: actcore-temporal-ui-tls
|
||||
rules:
|
||||
- host: activity-temporal.coulomb.social
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: actcore-temporal-ui
|
||||
port:
|
||||
number: 8080
|
||||
Loading…
Add table
Add a link
Reference in a new issue