Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

website/docs: Add Kubernetes Bootstrap Instructions #9541

Merged
merged 7 commits into from
Jul 11, 2024
20 changes: 20 additions & 0 deletions website/docs/installation/automated-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading