@@ -58,7 +58,7 @@ webapp:
58
58
` ` ` bash
59
59
helm upgrade -n trigger --install trigger \
60
60
oci://ghcr.io/triggerdotdev/charts/trigger \
61
- --version ~4.0.0-beta \
61
+ --version " ~4.0.0-beta" \
62
62
--create-namespace
63
63
```
64
64
@@ -106,11 +106,11 @@ The following commands will display the default values:
106
106
``` bash
107
107
# Specific version
108
108
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
109
- --version 4.0.0-beta.5
109
+ --version " 4.0.0-beta.5"
110
110
111
111
# Latest v4 beta
112
112
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
113
- --version ~ 4.0.0-beta
113
+ --version " ~4.0.0-beta"
114
114
```
115
115
116
116
### Custom values
@@ -170,7 +170,7 @@ Deploy with your custom values:
170
170
` ` ` bash
171
171
helm upgrade -n trigger --install trigger \
172
172
oci://ghcr.io/triggerdotdev/charts/trigger \
173
- --version ~4.0.0-beta \
173
+ --version " ~4.0.0-beta" \
174
174
--create-namespace \
175
175
-f values-custom.yaml
176
176
```
@@ -343,14 +343,14 @@ You can lock versions in two ways:
343
343
# Pin to a specific version for production
344
344
helm upgrade -n trigger --install trigger \
345
345
oci://ghcr.io/triggerdotdev/charts/trigger \
346
- --version 4.0.0-beta.5
346
+ --version " 4.0.0-beta.5"
347
347
348
348
# The app version will be different from the chart version
349
349
# This is the version of the Trigger.dev webapp and supervisor
350
350
# ..and should always match your Trigger.dev CLI version
351
351
helm show chart \
352
352
oci://ghcr.io/triggerdotdev/charts/trigger \
353
- --version 4.0.0-beta.5 | grep appVersion
353
+ --version " 4.0.0-beta.5" | grep appVersion
354
354
` ` `
355
355
356
356
**Specific image tags:**
0 commit comments