v4 self-hosting docs updates (#2202)

* quote version strings

* Update architecture diagram to include kubernetes

---------

Co-authored-by: James Ritchie <james@trigger.dev>
This commit is contained in:
nicktrn
2025-06-26 16:53:10 +01:00
committed by GitHub
parent 0f3179f493
commit 7a6d9dc225
2 changed files with 6 additions and 6 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 50 KiB

+6 -6
View File
@@ -58,7 +58,7 @@ webapp:
```bash
helm upgrade -n trigger --install trigger \
oci://ghcr.io/triggerdotdev/charts/trigger \
--version ~4.0.0-beta \
--version "~4.0.0-beta" \
--create-namespace
```
@@ -106,11 +106,11 @@ The following commands will display the default values:
```bash
# Specific version
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
--version 4.0.0-beta.5
--version "4.0.0-beta.5"
# Latest v4 beta
helm show values oci://ghcr.io/triggerdotdev/charts/trigger \
--version ~4.0.0-beta
--version "~4.0.0-beta"
```
### Custom values
@@ -170,7 +170,7 @@ Deploy with your custom values:
```bash
helm upgrade -n trigger --install trigger \
oci://ghcr.io/triggerdotdev/charts/trigger \
--version ~4.0.0-beta \
--version "~4.0.0-beta" \
--create-namespace \
-f values-custom.yaml
```
@@ -343,14 +343,14 @@ You can lock versions in two ways:
# Pin to a specific version for production
helm upgrade -n trigger --install trigger \
oci://ghcr.io/triggerdotdev/charts/trigger \
--version 4.0.0-beta.5
--version "4.0.0-beta.5"
# The app version will be different from the chart version
# This is the version of the Trigger.dev webapp and supervisor
# ..and should always match your Trigger.dev CLI version
helm show chart \
oci://ghcr.io/triggerdotdev/charts/trigger \
--version 4.0.0-beta.5 | grep appVersion
--version "4.0.0-beta.5" | grep appVersion
```
**Specific image tags:**