mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 11:54:42 +02:00
feat(auth): routes HTTPS publiques du hub (auth./portail.funklab.online)
IngressRoutes websecure + certResolver Let's Encrypt pour Authentik et Guacamole, en plus des routes internes *.lab.local (non destructif). Cert auth.funklab.online émis et vérifié (issuer Let's Encrypt). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
f34956f569
commit
8319ee60c0
2 changed files with 36 additions and 0 deletions
18
k8s/apps/authentik/ingress-public.yaml
Normal file
18
k8s/apps/authentik/ingress-public.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Accès public HTTPS — auth.funklab.online (cert Let's Encrypt auto).
|
||||||
|
# S'ajoute à la route interne auth.lab.local (non destructif).
|
||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRoute
|
||||||
|
metadata:
|
||||||
|
name: authentik-public
|
||||||
|
namespace: auth
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- websecure
|
||||||
|
routes:
|
||||||
|
- match: Host(`auth.funklab.online`)
|
||||||
|
kind: Rule
|
||||||
|
services:
|
||||||
|
- name: authentik
|
||||||
|
port: 9000
|
||||||
|
tls:
|
||||||
|
certResolver: letsencrypt
|
||||||
18
k8s/apps/guacamole/ingress-public.yaml
Normal file
18
k8s/apps/guacamole/ingress-public.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Accès public HTTPS — portail.funklab.online (cert Let's Encrypt auto).
|
||||||
|
# S'ajoute à la route interne portail.lab.local (non destructif).
|
||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRoute
|
||||||
|
metadata:
|
||||||
|
name: guacamole-public
|
||||||
|
namespace: auth
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- websecure
|
||||||
|
routes:
|
||||||
|
- match: Host(`portail.funklab.online`)
|
||||||
|
kind: Rule
|
||||||
|
services:
|
||||||
|
- name: guacamole
|
||||||
|
port: 8080
|
||||||
|
tls:
|
||||||
|
certResolver: letsencrypt
|
||||||
Loading…
Add table
Add a link
Reference in a new issue