본문으로 건너뛰기

Authentik 설치 가이드

설치

helm repo add authentik https://charts.goauthentik.io
helm repo update authentik \
&& helm search repo authentik/authentik -l | head -n 10
helm pull authentik/authentik --version 2025.8.4
helm show values authentik/authentik --version 2025.8.4 > authentik-2025.8.4.yaml
CREATE USER authentik WITH PASSWORD 'authentik';
CREATE DATABASE authentik with OWNER authentik;
resource "random_password" "authentik_secret_key" {
length = 50
special = false
}
authentik-values.yaml
authentik:
secret_key: ""
postgresql:
host: ""
port: 5432
user: authentik
password: authentik
# databaseName
name: authentik
redis:
host: ""
password: ""

server:
route:
main:
enabled: false
parentRefs:
- name: ""
namespace: ""
hostnames:
- ""
helm template authentik authentik/authentik \
--version 2025.8.4 \
-n authentik \
-f authentik-values.yaml \
> authentik.yaml
helm upgrade authentik authentik/authentik \
--install \
--history-max 5 \
--version 2025.8.4 \
-n authentik \
-f authentik-values.yaml

최초 설치 후 https://<domain>/if/flow/initial-setup/에 접속하여 관리자 계정을 생성해야 합니다.