Skip to content

Commit 4ec6a03

Browse files
committed
example point at latest beta chart
1 parent ac1e6c3 commit 4ec6a03

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

docs/self-hosting/kubernetes.mdx

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,12 @@ webapp:
5353
5454
### Quick start
5555
56-
<Note>
57-
The examples in this guide do NOT use the latest chart version. Please check [this page](https://github.com/triggerdotdev/trigger.dev/pkgs/container/charts%2Ftrigger).
58-
</Note>
59-
6056
1. Install with default values (for testing only):
6157
6258
```bash
6359
helm upgrade -n trigger --install trigger \
64-
oci://ghcr.io/triggerdotdev/charts/trigger:4.0.0-beta.5 \
60+
oci://ghcr.io/triggerdotdev/charts/trigger \
61+
--version ~4.0.0-beta \
6562
--create-namespace
6663
```
6764

@@ -107,7 +104,13 @@ config:
107104
The default values are insecure and are only suitable for testing. You _will_ need to configure your own secrets as a bare minimum. The following commands will display the default values:
108105

109106
```bash
110-
helm show values oci://ghcr.io/triggerdotdev/charts/trigger:4.0.0-beta.5
107+
# Specific version
108+
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
109+
--version 4.0.0-beta.5
110+
111+
# Latest v4 beta
112+
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
113+
--version ~4.0.0-beta
111114
```
112115

113116
### Custom values
@@ -164,7 +167,8 @@ Deploy with your custom values:
164167
165168
```bash
166169
helm upgrade -n trigger --install trigger \
167-
oci://ghcr.io/triggerdotdev/charts/trigger:4.0.0-beta.5 \
170+
oci://ghcr.io/triggerdotdev/charts/trigger \
171+
--version ~4.0.0-beta \
168172
--create-namespace \
169173
-f values-custom.yaml
170174
```
@@ -334,14 +338,17 @@ You can lock versions in two ways:
334338

335339
**Helm chart version (recommended):**
336340
```bash
337-
# Ensure specific chart version
341+
# Pin to a specific version for production
338342
helm upgrade -n trigger --install trigger \
339-
oci://ghcr.io/triggerdotdev/charts/trigger:4.0.0-beta.5 \
343+
oci://ghcr.io/triggerdotdev/charts/trigger \
340344
--version 4.0.0-beta.5
341345
342-
# Check the appVersion, which will be different from the chart version
346+
# The app version will be different from the chart version
347+
# This is the version of the Trigger.dev webapp and supervisor
348+
# ..and should always match your Trigger.dev CLI version
343349
helm show chart \
344-
oci://ghcr.io/triggerdotdev/charts/trigger:4.0.0-beta.5 | grep appVersion
350+
oci://ghcr.io/triggerdotdev/charts/trigger \
351+
--version 4.0.0-beta.5 | grep appVersion
345352
```
346353

347354
**Specific image tags:**
@@ -355,7 +362,7 @@ supervisor:
355362
tag: "v4.0.0-v4-beta.21"
356363
```
357364

358-
The chart version's `appVersion` field determines the default image tags. Using chart versions ensures compatibility between all components. Newer image tags may be incompatible with older chart versions and vice versa.
365+
The chart version's `appVersion` field determines the default image tags. Newer image tags may be incompatible with older chart versions and vice versa.
359366

360367
## Troubleshooting
361368

0 commit comments

Comments
 (0)