[JetStream] Enabling on NATS server (#2584)

* initial addition of jetstream flag

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* for review

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

* updates per Bernd

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>

Co-authored-by: Mark Fussell <markfussell@gmail.com>
This commit is contained in:
Hannah Hunter 2022-06-30 15:04:03 -05:00 committed by GitHub
parent 8066950aa1
commit 490c6afe44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -79,11 +79,17 @@ Install NATS JetStream on Kubernetes by using the [helm](https://github.com/nats
```bash
helm repo add nats https://nats-io.github.io/k8s/helm/charts/
helm install my-nats nats/nats
helm install --set nats.jetstream.enabled=true my-nats nats/nats
```
This installs a single NATS server into the `default` namespace. To interact
with NATS, find the service with: `kubectl get svc my-nats`.
This installs a single NATS server into the `default` namespace. To interact with NATS, find the service with:
```bash
kubectl get svc my-nats
```
For more information on helm chart settings, see the [Helm chart documentation](https://helm.sh/docs/helm/helm_install/).
{{% /codetab %}}
{{< /tabs >}}