Skip to content

Commit 85d645d

Browse files
authored
website/docs: add global to values.yaml snippets and update version (#22524)
Add global to values.yaml snippets and update version
1 parent 15afb94 commit 85d645d

1 file changed

Lines changed: 15 additions & 13 deletions

File tree

website/docs/install-config/beta.mdx

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Downgrading from RC or Beta versions is not supported. It is recommended to take
1818

1919
## Release Candidate (RC) versions
2020

21-
Release candidates are available for testing before major version releases. To use an RC version, you need to specify the exact RC tag (e.g., `2025.10.0-rc3`).
21+
Release candidates are available for testing before major version releases. To use an RC version, you need to specify the exact RC tag (e.g., `2026.5.0-rc2`).
2222

2323
<Tabs
2424
defaultValue="docker-compose"
@@ -28,10 +28,10 @@ Release candidates are available for testing before major version releases. To u
2828
]}
2929
groupId="platform">
3030
<TabItem value="docker-compose">
31-
Add the following block to your `.env` file, replacing `2025.10.0-rc3` with the desired RC version:
31+
Add the following block to your `.env` file, replacing `2026.5.0-rc2` with the desired RC version:
3232

3333
```shell
34-
AUTHENTIK_TAG=2025.10.0-rc3
34+
AUTHENTIK_TAG=2026.5.0-rc2
3535
```
3636

3737
Next, pull the image and redeploy:
@@ -44,13 +44,14 @@ docker compose up -d
4444
</TabItem>
4545

4646
<TabItem value="kubernetes">
47-
Add the following block to your `values.yaml` file, replacing `2025.10.0-rc3` with the desired RC version:
47+
Add the following block to your `values.yaml` file, replacing `2026.5.0-rc2` with the desired RC version:
4848

4949
```yaml
50-
image:
51-
tag: 2025.10.0-rc3
52-
# pullPolicy: Always to ensure you always get the latest version
53-
pullPolicy: Always
50+
global:
51+
image:
52+
tag: 2026.5.0-rc2
53+
# pullPolicy: Always to ensure you always get the latest version
54+
pullPolicy: Always
5455
```
5556
5657
Next, run the upgrade commands:
@@ -94,11 +95,12 @@ Add the following block to your `values.yml` file:
9495
authentik:
9596
outposts:
9697
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
97-
image:
98-
repository: ghcr.io/goauthentik/dev-server
99-
tag: gh-next
100-
# pullPolicy: Always to ensure you always get the latest version
101-
pullPolicy: Always
98+
global:
99+
image:
100+
repository: ghcr.io/goauthentik/dev-server
101+
tag: gh-next
102+
# pullPolicy: Always to ensure you always get the latest version
103+
pullPolicy: Always
102104
```
103105
104106
Next, run the upgrade commands below.

0 commit comments

Comments
 (0)