From a7772b1a53a05d44d42ba6a5ce24d334852e4bfc Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Mon, 14 Jun 2021 17:26:53 -0700 Subject: [PATCH 1/2] Updating PubSub documentation to remove slave Bitnami has updated their Redis Helm chart to change redis-slave to redis-replicas. I am updating the documentation for PubSub to reflect this change and avoid confusion for any readers. --- .../content/en/getting-started/configure-state-pubsub.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/getting-started/configure-state-pubsub.md b/daprdocs/content/en/getting-started/configure-state-pubsub.md index e1f943cf0af..84faafa3bfb 100644 --- a/daprdocs/content/en/getting-started/configure-state-pubsub.md +++ b/daprdocs/content/en/getting-started/configure-state-pubsub.md @@ -52,8 +52,8 @@ You can use [Helm](https://helm.sh/) to quickly create a Redis instance in our K $ kubectl get pods NAME READY STATUS RESTARTS AGE redis-master-0 1/1 Running 0 69s - redis-slave-0 1/1 Running 0 69s - redis-slave-1 1/1 Running 0 22s + redis-replicas-0 1/1 Running 0 69s + redis-replicas-1 1/1 Running 0 22s ``` Note that the hostname is `redis-master.default.svc.cluster.local:6379`, and a Kubernetes secret, `redis`, is created automatically. @@ -228,4 +228,4 @@ kubectl apply -f redis-pubsub.yaml {{< /tabs >}} ## Next steps -- [Try out a Dapr quickstart]({{< ref quickstarts.md >}}) \ No newline at end of file +- [Try out a Dapr quickstart]({{< ref quickstarts.md >}}) From d11d99f59f36b3026f29301695592a3a70ebb1e2 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Mon, 14 Jun 2021 17:29:53 -0700 Subject: [PATCH 2/2] Removing more instances of Redis slave naming --- .../en/operations/components/setup-pubsub/pubsub-namespaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/operations/components/setup-pubsub/pubsub-namespaces.md b/daprdocs/content/en/operations/components/setup-pubsub/pubsub-namespaces.md index bd042668441..b70fc73ba47 100644 --- a/daprdocs/content/en/operations/components/setup-pubsub/pubsub-namespaces.md +++ b/daprdocs/content/en/operations/components/setup-pubsub/pubsub-namespaces.md @@ -24,7 +24,7 @@ The table below shows which resources are deployed to which namespaces: | Resource | namespace-a | namespace-b | |------------------------ |-------------|-------------| | Redis master | X | | -| Redis slave | X | | +| Redis replicas | X | | | Dapr's PubSub component | X | X | | Node subscriber | X | | | Python subscriber | X | |