mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
108 lines
3.1 KiB
YAML
108 lines
3.1 KiB
YAML
# https://github.com/authelia/chartrepo/blob/master/charts/authelia/values.yaml
|
|
image:
|
|
registry: ghcr.io
|
|
repository: authelia/authelia
|
|
tag: 4.38.10 # renovate: docker=ghcr.io/authelia/authelia
|
|
pullPolicy: IfNotPresent
|
|
|
|
pod:
|
|
kind: 'Deployment'
|
|
|
|
configMap:
|
|
default_2fa_method: totp
|
|
theme: 'dark'
|
|
|
|
access_control:
|
|
default_policy: 'two_factor'
|
|
|
|
authentication_backend:
|
|
ldap:
|
|
enabled: true
|
|
implementation: 'lldap'
|
|
address: 'ldap://lldap.lldap.svc.cluster.local'
|
|
base_dn: 'dc=stonegarden,dc=dev'
|
|
users_filter: '(&(|({username_attribute}={input})({mail_attribute}={input}))(objectClass=person))'
|
|
additional_users_dn: 'ou=people'
|
|
groups_filter: '(member={dn})'
|
|
additional_groups_dn: 'ou=groups'
|
|
user: 'UID=authelia,OU=people,DC=stonegarden,DC=dev'
|
|
password:
|
|
secret_name: 'lldap-auth'
|
|
|
|
session:
|
|
cookies:
|
|
- subdomain: authelia
|
|
domain: stonegarden.dev
|
|
|
|
storage:
|
|
postgres:
|
|
enabled: false
|
|
address: 'tcp://postgres.databases.svc.cluster.local:5432'
|
|
# Switch to Postgres later
|
|
local:
|
|
enabled: true
|
|
|
|
notifier:
|
|
filesystem:
|
|
enabled: true
|
|
|
|
identity_providers:
|
|
oidc:
|
|
## Enables this in the config map. Currently in beta stage.
|
|
## See https://www.authelia.com/r/openid-connect/
|
|
enabled: true
|
|
jwks:
|
|
- key_id: 'default'
|
|
algorithm: 'RS256'
|
|
use: 'sig'
|
|
key:
|
|
path: /secrets/oidc-jwks/default.RS256.private.pem
|
|
certificate_chain:
|
|
path: /secrets/oidc-jwks/default.RS256.public.crt
|
|
- key_id: 'ecdsa'
|
|
algorithm: 'ES256'
|
|
use: 'sig'
|
|
key:
|
|
path: /secrets/oidc-jwks/ecdsa.P256.private.pem
|
|
cors:
|
|
allowed_origins_from_client_redirect_uris: true
|
|
clients:
|
|
- client_id: 'argocd'
|
|
client_secret:
|
|
path: '/secrets/oidc-argocd/clientSecret'
|
|
client_name: 'Argo CD'
|
|
public: false
|
|
authorization_policy: 'two_factor'
|
|
redirect_uris:
|
|
- 'https://argocd.stonegarden.dev/auth/callback'
|
|
- 'https://argocd.stonegarden.dev/applications'
|
|
scopes: [ 'openid', 'groups', 'email', 'profile' ]
|
|
userinfo_signed_response_alg: 'none'
|
|
id_token_signed_response_alg: 'ES256'
|
|
- client_id: 'argocd-cli'
|
|
client_name: 'Argo CD (CLI)'
|
|
public: true
|
|
authorization_policy: 'two_factor'
|
|
redirect_uris: [ 'http://localhost:8085/auth/callback' ]
|
|
scopes: [ 'openid', 'groups', 'email', 'profile', 'offline_access' ]
|
|
userinfo_signed_response_alg: 'none'
|
|
|
|
secret:
|
|
additionalSecrets:
|
|
lldap-auth:
|
|
items:
|
|
- key: password
|
|
path: authentication.ldap.password.txt
|
|
oidc-argocd:
|
|
items:
|
|
- key: clientSecret
|
|
path: clientSecret
|
|
oidc-jwks:
|
|
items:
|
|
- key: default.RS256.private.pem
|
|
path: default.RS256.private.pem
|
|
- key: default.RS256.public.crt
|
|
path: default.RS256.public.crt
|
|
- key: ecdsa.P256.private.pem
|
|
path: ecdsa.P256.private.pem
|