@@ -58,7 +58,7 @@ webapp:
5858` ` ` bash
5959helm upgrade -n trigger --install trigger \
6060 oci://ghcr.io/triggerdotdev/charts/trigger \
61- --version ~4.0.0-beta \
61+ --version " ~4.0.0-beta" \
6262 --create-namespace
6363```
6464
@@ -106,11 +106,11 @@ The following commands will display the default values:
106106``` bash
107107# Specific version
108108helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
109- --version 4.0.0-beta.5
109+ --version " 4.0.0-beta.5"
110110
111111# Latest v4 beta
112112helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
113- --version ~ 4.0.0-beta
113+ --version " ~4.0.0-beta"
114114```
115115
116116### Custom values
@@ -170,7 +170,7 @@ Deploy with your custom values:
170170` ` ` bash
171171helm upgrade -n trigger --install trigger \
172172 oci://ghcr.io/triggerdotdev/charts/trigger \
173- --version ~4.0.0-beta \
173+ --version " ~4.0.0-beta" \
174174 --create-namespace \
175175 -f values-custom.yaml
176176```
@@ -343,14 +343,14 @@ You can lock versions in two ways:
343343# Pin to a specific version for production
344344helm upgrade -n trigger --install trigger \
345345 oci://ghcr.io/triggerdotdev/charts/trigger \
346- --version 4.0.0-beta.5
346+ --version " 4.0.0-beta.5"
347347
348348# The app version will be different from the chart version
349349# This is the version of the Trigger.dev webapp and supervisor
350350# ..and should always match your Trigger.dev CLI version
351351helm show chart \
352352 oci://ghcr.io/triggerdotdev/charts/trigger \
353- --version 4.0.0-beta.5 | grep appVersion
353+ --version " 4.0.0-beta.5" | grep appVersion
354354` ` `
355355
356356**Specific image tags:**
0 commit comments