From aecd4b52ef05bdb53b3e01dc9b1443ab7eb79f4e Mon Sep 17 00:00:00 2001 From: Tana M Berry Date: Fri, 17 Nov 2023 12:23:05 -0600 Subject: [PATCH] website/docs: fixed formatting on tabs (#7609) * fixed formatting on tabs * sync tabs and use same code blocks for both Signed-off-by: Jens Langhammer --------- Signed-off-by: Jens Langhammer Co-authored-by: Tana Berry Co-authored-by: Jens Langhammer --- website/docs/installation/configuration.mdx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/website/docs/installation/configuration.mdx b/website/docs/installation/configuration.mdx index f2004d316..28d8e5f50 100644 --- a/website/docs/installation/configuration.mdx +++ b/website/docs/installation/configuration.mdx @@ -20,18 +20,22 @@ All of these variables can be set to values, but you can also use a URI-like for import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; - + If you are using Docker Compose, edit your .env file to append any keys that you want to add, and then run the following command to apply them: + ``` docker-compose up -d + ``` If you are running in Kubernetes, edit your values.yaml file to append any keys that you want to add, and then run the following commands to apply: + ``` helm repo update helm upgrade --install authentik authentik/authentik -f values.yaml + ``` @@ -41,15 +45,19 @@ import TabItem from "@theme/TabItem"; To check if your config has been applied correctly, you can run the following command to output the full config: - + + ``` docker-compose run --rm worker dump_config + ``` + ``` kubectl exec -it deployment/authentik-worker -c authentik -- ak dump_config + ```