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 + ```