FEAT(authelia): configure immich oidc
- Add ExternalSecret for OIDC client secret - Add OAuth environment variables - Remove Authelia middleware (using direct OIDC)
This commit is contained in:
@@ -18,6 +18,19 @@ controllers:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: immich-postgres-password
|
name: immich-postgres-password
|
||||||
key: password
|
key: password
|
||||||
|
# OAuth/OIDC configuration
|
||||||
|
OAUTH_ENABLED: "true"
|
||||||
|
OAUTH_ISSUER_URL: https://auth0213.kro.kr
|
||||||
|
OAUTH_CLIENT_ID: immich
|
||||||
|
OAUTH_CLIENT_SECRET:
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: immich-oidc
|
||||||
|
key: OAUTH_CLIENT_SECRET
|
||||||
|
OAUTH_SCOPE: "openid profile email"
|
||||||
|
OAUTH_AUTO_REGISTER: "true"
|
||||||
|
OAUTH_BUTTON_TEXT: "Login with Authelia"
|
||||||
|
OAUTH_AUTO_LAUNCH: "true"
|
||||||
|
|
||||||
# Immich configuration
|
# Immich configuration
|
||||||
immich:
|
immich:
|
||||||
@@ -55,7 +68,6 @@ server:
|
|||||||
className: traefik
|
className: traefik
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
traefik.ingress.kubernetes.io/router.middlewares: authelia-authelia-auth@kubernetescrd
|
|
||||||
hosts:
|
hosts:
|
||||||
- host: immich0213.kro.kr
|
- host: immich0213.kro.kr
|
||||||
paths:
|
paths:
|
||||||
|
|||||||
@@ -3,4 +3,5 @@ kind: Kustomization
|
|||||||
resources:
|
resources:
|
||||||
- pvc.yaml
|
- pvc.yaml
|
||||||
- vault/immich-postgres-password.yaml
|
- vault/immich-postgres-password.yaml
|
||||||
|
- vault/immich-oidc.yaml
|
||||||
namespace: immich
|
namespace: immich
|
||||||
|
|||||||
18
immich/vault/immich-oidc.yaml
Normal file
18
immich/vault/immich-oidc.yaml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: immich-oidc
|
||||||
|
namespace: immich
|
||||||
|
spec:
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
name: vault-backend
|
||||||
|
target:
|
||||||
|
name: immich-oidc
|
||||||
|
creationPolicy: Owner
|
||||||
|
data:
|
||||||
|
- secretKey: OAUTH_CLIENT_SECRET
|
||||||
|
remoteRef:
|
||||||
|
key: cluster-infrastructure/authelia
|
||||||
|
property: IMMICH_CLIENT_SECRET
|
||||||
Reference in New Issue
Block a user