Skip to content

Commit 427726d

Browse files
authored
DOCS: docs/self_hosting/installation/kubernetes.mdx: Fix helm install command to include namespace (#782)
In `docs/self_hosting/installation/kubernetes.mdx` The docs mention replacing `<your-namespace>`, but that's not part of the `helm install` command that's shown. Added the namespace argument there and changed the variable to `<namespace>` which seems like more of a style match. Also fix missing `>` on the earlier mention of `<namespace>`.
1 parent 469041c commit 427726d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/self_hosting/installation/kubernetes.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ Ensure you have the following tools/items ready. Some items are marked optional:
114114
```
115115

116116
:::note Namespace
117-
If you are using a namespace other than the default namespace, you will need to specify the namespace in the `helm` and `kubectl` commands by using the `-n <namespace` flag.
117+
If you are using a namespace other than the default namespace, you will need to specify the namespace in the `helm` and `kubectl` commands by using the `-n <namespace>` flag.
118118
:::
119119

120-
3. Run `helm install langsmith langchain/langsmith --values langsmith_config.yaml --version <version> --debug`
120+
3. Run `helm install langsmith langchain/langsmith --values langsmith_config.yaml --version <version> -n <namespace> --debug`
121121

122-
- Replace `<your-namespace>` with the namespace you want to deploy LangSmith to.
122+
- Replace `<namespace>` with the namespace you want to deploy LangSmith to.
123123
- Replace `<version>` with the version of LangSmith you want to deploy. You can find the available versions in the [Helm Chart repository](https://github.com/langchain-ai/helm/releases). We generally recommend using the latest version.
124124
Output should look something like:
125125

0 commit comments

Comments
 (0)