From 9972266db9103a3e1ed0d0be09fe488407449b47 Mon Sep 17 00:00:00 2001
From: Zapfmeister <zapfmeister@gmail.com>
Date: Thu, 11 Jul 2024 23:11:29 +0200
Subject: [PATCH] website/docs: Add Kubernetes Bootstrap Instructions (#9541)

* Add Kubernetes Bootstrap Instructions

Signed-off-by: Zapfmeister <zapfmeister@gmail.com>

* Update website/docs/installation/automated-install.md

Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Signed-off-by: Zapfmeister <zapfmeister@gmail.com>

* Update website/docs/installation/automated-install.md

Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
Signed-off-by: Zapfmeister <zapfmeister@gmail.com>

* Update website/docs/installation/automated-install.md

Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
Signed-off-by: Zapfmeister <zapfmeister@gmail.com>

* Update website/docs/installation/automated-install.md

Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
Signed-off-by: Zapfmeister <zapfmeister@gmail.com>

* Fix lint

* Update website/docs/installation/automated-install.md

Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Signed-off-by: Zapfmeister <zapfmeister@gmail.com>

---------

Signed-off-by: Zapfmeister <zapfmeister@gmail.com>
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
---
 .../docs/installation/automated-install.md    | 20 +++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/website/docs/installation/automated-install.md b/website/docs/installation/automated-install.md
index 275c05ce8750c..ca33a6481ab5e 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.