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
## Summary
Stable v4 Docker image builds now also publish `v4` and `latest` tags,
giving Docker-based self-hosters a maintained floating tag to use after
a stable release. The Kubernetes guide now uses the current Helm chart
line and current pinned examples, so new installs and upgrades resolve
to the 4.5 chart line instead of the 4.0 line.
## Design
The publish workflows add the floating tags only for stable `v4.x.x`
image tags. Prerelease and `main` builds keep their existing tags.
Copy file name to clipboardExpand all lines: docs/self-hosting/kubernetes.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ webapp:
61
61
```bash
62
62
helm upgrade -n trigger --install trigger \
63
63
oci://ghcr.io/triggerdotdev/charts/trigger \
64
-
--version "~4.0.0" \
64
+
--version "^4.5.0" \
65
65
--create-namespace
66
66
```
67
67
@@ -107,11 +107,11 @@ The following commands will display the default values:
107
107
```bash
108
108
# Specific version
109
109
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
110
-
--version "4.0.5"
110
+
--version "4.5.0"
111
111
112
112
# Latest v4
113
113
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
114
-
--version "~4.0.0"
114
+
--version "^4.5.0"
115
115
```
116
116
117
117
### Custom values
@@ -171,7 +171,7 @@ Deploy with your custom values:
171
171
```bash
172
172
helm upgrade -n trigger --install trigger \
173
173
oci://ghcr.io/triggerdotdev/charts/trigger \
174
-
--version "~4.0.0" \
174
+
--version "^4.5.0" \
175
175
--create-namespace \
176
176
-f values-custom.yaml
177
177
```
@@ -510,26 +510,26 @@ You can lock versions in two ways:
510
510
# Pin to a specific version for production
511
511
helm upgrade -n trigger --install trigger \
512
512
oci://ghcr.io/triggerdotdev/charts/trigger \
513
-
--version "4.0.5"
513
+
--version "4.5.0"
514
514
515
515
# The app version will be different from the chart version
516
516
# This is the version of the Trigger.dev webapp and supervisor
517
517
# ..and should always match your Trigger.dev CLI version
518
518
helm show chart \
519
519
oci://ghcr.io/triggerdotdev/charts/trigger \
520
-
--version "4.0.5" | grep appVersion
520
+
--version "4.5.0" | grep appVersion
521
521
```
522
522
523
523
**Specific image tags:**
524
524
525
525
```yaml
526
526
webapp:
527
527
image:
528
-
tag: "v4.0.0"
528
+
tag: "v4.5.0"
529
529
530
530
supervisor:
531
531
image:
532
-
tag: "v4.0.0"
532
+
tag: "v4.5.0"
533
533
```
534
534
535
535
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