Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/self-hosting/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions docs/self-hosting/kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
```
Expand Down Expand Up @@ -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:**
Expand Down