diff --git a/docs/self-hosting/architecture.png b/docs/self-hosting/architecture.png index 35d91acab4..a0dc791c1e 100644 Binary files a/docs/self-hosting/architecture.png and b/docs/self-hosting/architecture.png differ diff --git a/docs/self-hosting/kubernetes.mdx b/docs/self-hosting/kubernetes.mdx index a828b9c857..41a9cbc336 100644 --- a/docs/self-hosting/kubernetes.mdx +++ b/docs/self-hosting/kubernetes.mdx @@ -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:**