mirror of https://github.com/dapr/docs.git
[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:
parent
8066950aa1
commit
490c6afe44
|
@ -79,11 +79,17 @@ Install NATS JetStream on Kubernetes by using the [helm](https://github.com/nats
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
helm repo add nats https://nats-io.github.io/k8s/helm/charts/
|
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
|
This installs a single NATS server into the `default` namespace. To interact with NATS, find the service with:
|
||||||
with NATS, find the service with: `kubectl get svc my-nats`.
|
|
||||||
|
```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 %}}
|
{{% /codetab %}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
Loading…
Reference in New Issue