diff --git a/website/docs/installation/automated-install.md b/website/docs/installation/automated-install.md index 275c05ce87..ca33a6481a 100644 --- a/website/docs/installation/automated-install.md +++ b/website/docs/installation/automated-install.md @@ -23,3 +23,23 @@ Requires authentik 2023.3 ::: Set the email address for the default `akadmin` user. + +## Kubernetes + +In the Helm values, set the `akadmin`user password and token: + +```text +authentik: + bootstrap_token: test + bootstrap_password: test +``` + +To store the password and token in a secret, use: + +```text +envFrom: + - secretRef: + name: _some-secret_ +``` + +where _some-secret_ contains the environment variables as in the documentation above.