From 540dd5dd1f478a81de2c3734d95a4999b4a31d5f Mon Sep 17 00:00:00 2001 From: Kaitlyn Michael Date: Wed, 29 Jan 2025 15:18:49 -0600 Subject: [PATCH] DOC-4696 fix --- content/operate/kubernetes/re-databases/replica-redb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/operate/kubernetes/re-databases/replica-redb.md b/content/operate/kubernetes/re-databases/replica-redb.md index 8d1c4171e..25b7cfa74 100644 --- a/content/operate/kubernetes/re-databases/replica-redb.md +++ b/content/operate/kubernetes/re-databases/replica-redb.md @@ -80,7 +80,7 @@ You will need `kubectl`, `curl`, and `jq` installed for this procedure. ```js JQ='.[] | select(.name=="' JQ+="${SOURCE_DB}" - JQ+='") | ("redis://admin:" + .authentication_admin_pass + "@"+.endpoints[0].dns_name+":"+(.endpoints[0].port|tostring))' + JQ+='") | ("redis://admin:" + .authentication_admin_pass + "@"+.name+":"+(.endpoints[0].port|tostring))' URI=`curl -sf -k -u "$CLUSTER_USER:$CLUSTER_PASSWORD" "https://localhost:9443/v1/bdbs?fields=uid,name,endpoints,authentication_admin_pass" | jq "$JQ" | sed 's/"//g'` ```