You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/self-hosting/kubernetes.mdx
+19-12Lines changed: 19 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,15 +53,12 @@ webapp:
53
53
54
54
### Quick start
55
55
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
-
60
56
1. Install with default values (for testing only):
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:
108
105
109
106
```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
111
114
```
112
115
113
116
### Custom values
@@ -164,7 +167,8 @@ Deploy with your custom values:
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.
0 commit comments