Skip to content

Commit 7a6d9dc

Browse files
nicktrnsamejr
andauthored
v4 self-hosting docs updates (#2202)
* quote version strings * Update architecture diagram to include kubernetes --------- Co-authored-by: James Ritchie <james@trigger.dev>
1 parent 0f3179f commit 7a6d9dc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/self-hosting/architecture.png

3.49 KB
Loading

docs/self-hosting/kubernetes.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ webapp:
5858
```bash
5959
helm 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
108108
helm 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
112112
helm 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
171171
helm 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
344344
helm 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
351351
helm 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

Comments
 (0)