From f36672f58c0071b3cc81c090235082c3c33e7da6 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Fri, 2 Feb 2024 09:02:06 -0800 Subject: [PATCH] Update daprdocs/content/en/reference/components-reference/supported-state-stores/setup-mongodb.md Signed-off-by: Mark Fussell --- .../supported-state-stores/setup-mongodb.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-mongodb.md b/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-mongodb.md index 8bcd5791cc1..db3fec2ed77 100644 --- a/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-mongodb.md +++ b/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-mongodb.md @@ -95,6 +95,12 @@ In order to use the MongoDB state store for transactions and as an actor state s {{% codetab %}} You can conveniently install MongoDB on Kubernetes using the [Helm chart packaged by Bitnami](https://github.com/bitnami/charts/tree/main/bitnami/mongodb/). Refer to the documentation for the Helm chart for deploying MongoDB, both as a standalone server, and with a Replica Set (required for using transactions and actors). +This installs MongoDB into the `default` namespace. +To interact with MongoDB, find the service with: `kubectl get svc mongo-mongodb`. +For example, if installing using the Helm defaults above, the MongoDB host address would be: +`mongo-mongodb.default.svc.cluster.local:27017` +Follow the on-screen instructions to get the root password for MongoDB. +The username is typically `admin` by default. {{% /codetab %}} {{< /tabs >}}