Skip to content

Commit 2a9b9ea

Browse files
committed
docs(kubernetes): use v4 helm chart instead of beta
1 parent f7cb637 commit 2a9b9ea

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/self-hosting/kubernetes.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ webapp:
6161
```bash
6262
helm upgrade -n trigger --install trigger \
6363
oci://ghcr.io/triggerdotdev/charts/trigger \
64-
--version "~4.0.0-beta" \
64+
--version "~4.0.0" \
6565
--create-namespace
6666
```
6767

@@ -107,11 +107,11 @@ The following commands will display the default values:
107107
```bash
108108
# Specific version
109109
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
110-
--version "4.0.0-beta.5"
110+
--version "4.0.5"
111111

112-
# Latest v4 beta
112+
# Latest v4
113113
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
114-
--version "~4.0.0-beta"
114+
--version "~4.0.0"
115115
```
116116

117117
### Custom values
@@ -171,7 +171,7 @@ Deploy with your custom values:
171171
```bash
172172
helm upgrade -n trigger --install trigger \
173173
oci://ghcr.io/triggerdotdev/charts/trigger \
174-
--version "~4.0.0-beta" \
174+
--version "~4.0.0" \
175175
--create-namespace \
176176
-f values-custom.yaml
177177
```
@@ -489,14 +489,14 @@ You can lock versions in two ways:
489489
# Pin to a specific version for production
490490
helm upgrade -n trigger --install trigger \
491491
oci://ghcr.io/triggerdotdev/charts/trigger \
492-
--version "4.0.0-beta.5"
492+
--version "4.0.5"
493493
494494
# The app version will be different from the chart version
495495
# This is the version of the Trigger.dev webapp and supervisor
496496
# ..and should always match your Trigger.dev CLI version
497497
helm show chart \
498498
oci://ghcr.io/triggerdotdev/charts/trigger \
499-
--version "4.0.0-beta.5" | grep appVersion
499+
--version "4.0.5" | grep appVersion
500500
```
501501

502502
**Specific image tags:**

0 commit comments

Comments
 (0)