From 7aa903d715d336844ec557c7f64364f1950d1ea3 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Fri, 21 May 2021 19:02:05 +0200 Subject: [PATCH] website/docs: update k8s install docs Signed-off-by: Jens Langhammer --- website/docs/installation/kubernetes.md | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/website/docs/installation/kubernetes.md b/website/docs/installation/kubernetes.md index d2448796e..0aa1ba4e0 100644 --- a/website/docs/installation/kubernetes.md +++ b/website/docs/installation/kubernetes.md @@ -9,12 +9,29 @@ To install authentik using the helm chart, generate a password for the database Create a values.yaml file with a minimum of these settings: ```yaml +authentik: + secret_key: "PleaseGenerateA50CharKey" + # This sends anonymous usage-data, stack traces on errors and + # performance data to sentry.beryju.org, and is fully opt-in + error_reporting: + enabled: true + postgresql: + password: "ThisIsNotASecurePassword" + +ingress: + enabled: true + hosts: + - host: authentik.domain.tld + paths: + - path: "/" + pathType: Prefix + postgresql: - postgresqlPassword: "" + enabled: true + postgresqlPassword: "ThisIsNotASecurePassword" redis: - password: "" -config: - secretKey: "" + enabled: true + ``` See all configurable values on [artifacthub](https://artifacthub.io/packages/helm/goauthentik/authentik).