website/docs: expand beta beta / install docs (#6443)

* website/docs: expand beta beta / install docs

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* Apply suggestions from code review

Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
Signed-off-by: Jens L. <jens@beryju.org>

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens L. <jens@beryju.org>
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
This commit is contained in:
Jens L
2023-08-01 18:02:31 +02:00
committed by GitHub
parent 887c21ac6d
commit 30d32022e5
5 changed files with 46 additions and 43 deletions

View File

@ -5,7 +5,7 @@ title: Beta versions
You can test upcoming authentik versions by switching to the _next_ images. It is recommended to upgrade to the latest stable release before upgrading to Beta images. It is always possible to upgrade from the Beta to the next stable release.
:::warning
Downgrading from the Beta is not supported. It is recommended to take a backup before upgrading, or test Beta versions on a separate install.
Downgrading from the Beta is not supported. It is recommended to take a backup before upgrading, or test Beta versions on a separate install. Upgrading from Beta versions to the next release is usually possible, however also not supported.
:::
import Tabs from "@theme/Tabs";
@ -16,7 +16,8 @@ import TabItem from "@theme/TabItem";
values={[
{label: 'Docker Compose', value: 'docker-compose'},
{label: 'Kubernetes', value: 'kubernetes'},
]}>
]}
groupId="platform">
<TabItem value="docker-compose">
Add the following block to your `.env` file:
@ -58,7 +59,8 @@ Next, run the upgrade commands below.
values={[
{label: 'Docker Compose', value: 'docker-compose'},
{label: 'Kubernetes', value: 'kubernetes'},
]}>
]}
groupId="platform">
<TabItem value="docker-compose">
```shell
@ -70,10 +72,9 @@ docker-compose up -d
<TabItem value="kubernetes">
```yaml
image:
repository: ghcr.io/goauthentik/server
tag: 2023.6.0
```shell
helm repo update
helm upgrade authentik authentik/authentik -f values.yaml
```
</TabItem>