Skip to content

Commit

Permalink
fixed formatting on tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tana Berry committed Nov 17, 2023
1 parent ce86b20 commit ec95366
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions website/docs/installation/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ import TabItem from "@theme/TabItem";
<TabItem value="docker-compose" label="Docker Compose" default>
If you are using Docker Compose, edit your <code>.env</code> file to append any keys that you want to add, and then run the following command to apply them:

docker-compose up -d
`docker-compose up -d`

</TabItem>
<TabItem value="kubernetes" label="Kubernetes">
If you are running in Kubernetes, edit your <code>values.yaml</code> 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

```
</TabItem>

</Tabs>
Expand All @@ -44,12 +45,12 @@ To check if your config has been applied correctly, you can run the following co
<Tabs>
<TabItem value="docker-compose" label="Docker Compose" default>

docker-compose run --rm worker dump_config
`docker-compose run --rm worker dump_config`

</TabItem>
<TabItem value="kubernetes" label="Kubernetes">

kubectl exec -it deployment/authentik-worker -c authentik -- ak dump_config
`kubectl exec -it deployment/authentik-worker -c authentik -- ak dump_config`

</TabItem>

Expand Down

0 comments on commit ec95366

Please sign in to comment.