2021-03-12 17:04:42 +00:00
---
title: Beta versions
---
You can test upcoming authentik versions by switching to the *next* images. These beta versions supported upgrades from the latest stable version, and have a supported upgrade plan to the next stable version.
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
<Tabs
defaultValue="docker-compose"
values={[
{label: 'docker-compose', value: 'docker-compose'},
{label: 'Kubernetes', value: 'kubernetes'},
]}>
<TabItem value="docker-compose">
Add the following block to your `.env` file:
```shell
2021-05-10 22:11:42 +00:00
AUTHENTIK_IMAGE=beryju.org/authentik/server
2021-03-12 17:04:42 +00:00
AUTHENTIK_TAG=gh-next
2021-05-10 22:11:42 +00:00
AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=beryju.org/authentik/outpost-%(type)s:gh-next
2021-03-12 17:04:42 +00:00
```
2021-04-10 18:58:55 +00:00
Afterwards, run the upgrade commands from the latest releasae notes.
2021-03-12 17:04:42 +00:00
</TabItem>
<TabItem value="kubernetes">
Add the following block to your `values.yml` file:
```yaml
2021-06-09 09:07:02 +00:00
authentik:
outposts:
docker_image_base: beryju.org/authentik/outpost-%(type)s:gh-%(build_hash)s
2021-03-12 17:04:42 +00:00
image:
2021-05-10 22:11:42 +00:00
name: beryju.org/authentik/server
2021-03-12 17:04:42 +00:00
tag: gh-next
# pullPolicy: Always to ensure you always get the latest version
pullPolicy: Always
```
2021-04-10 18:58:55 +00:00
Afterwards, run the upgrade commands from the latest releasae notes.
2021-03-12 17:04:42 +00:00
</TabItem>
</Tabs>