From 7d751c1182e865d758ff09e098bacc205ed575b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczy=C5=84ski?= <2000michal@wp.pl> Date: Wed, 3 Jul 2024 14:46:15 +0200 Subject: [PATCH] fix(docs): keep prod-cluster name convention Ref #3879 --- docs/source/docker/index.rst | 2 +- docs/source/sctool/index.rst | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/docker/index.rst b/docs/source/docker/index.rst index 4eb8af22d2..2c0b98f095 100644 --- a/docs/source/docker/index.rst +++ b/docs/source/docker/index.rst @@ -58,7 +58,7 @@ Docker command installed. .. code-block:: none - sctool cluster add --name test --host=scylla --auth-token=token + sctool cluster add --name prod-cluster --host=scylla --auth-token=token this will print the cluster added message diff --git a/docs/source/sctool/index.rst b/docs/source/sctool/index.rst index 0fc1a670a1..a3aa3fc0da 100644 --- a/docs/source/sctool/index.rst +++ b/docs/source/sctool/index.rst @@ -47,7 +47,7 @@ List tasks with set properties .. code-block:: console - sctool tasks -c mycluster --show-properties + sctool tasks -c prod-cluster --show-properties ╭─────────────────────────────────────────────┬──────────────┬────────┬───────────────┬─────────┬───────┬─────────────────────────┬────────────┬─────────┬─────────────────────────┬───────────────────────────╮ │ Task │ Schedule │ Window │ Timezone │ Success │ Error │ Last Success │ Last Error │ Status │ Next │ Properties │ ├─────────────────────────────────────────────┼──────────────┼────────┼───────────────┼─────────┼───────┼─────────────────────────┼────────────┼─────────┼─────────────────────────┼───────────────────────────┤ @@ -63,7 +63,7 @@ Disable repair task .. code-block:: console - sctool repair update -c mycluster repair/all-weekly --enabled=false + sctool repair update -c prod-cluster repair/all-weekly --enabled=false List also the disabled tasks ............................ @@ -72,7 +72,7 @@ Note that disabled tasks are prefixed with ``*``. .. code-block:: console - sctool tasks -c mycluster -a + sctool tasks -c prod-cluster -a ╭─────────────────────────────────────────────┬──────────────┬────────┬───────────────┬─────────┬───────┬─────────────────────────┬────────────┬────────┬─────────────────────────╮ │ Task │ Schedule │ Window │ Timezone │ Success │ Error │ Last Success │ Last Error │ Status │ Next │ ├─────────────────────────────────────────────┼──────────────┼────────┼───────────────┼─────────┼───────┼─────────────────────────┼────────────┼────────┼─────────────────────────┤ @@ -88,7 +88,7 @@ Enable repair task .. code-block:: console - sctool repair update -c mycluster repair/all-weekly --enabled=true + sctool repair update -c prod-cluster repair/all-weekly --enabled=true Download files from backup location ...................................