doc: update the commands to upgrade the ScyllaDB image

(cherry picked from commit db75adaf9a)
This commit is contained in:
Anna Stuchlik
2022-09-20 10:36:18 +02:00
parent 9deca4250f
commit 4c19b48495
2 changed files with 21 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ Choosing this upgrade procedure allows you to upgrade your ScyllaDB version and
.. code:: sh
cat scylla-enterprise-packages-<version>-<arch>.txt | sudo xargs -n1 apt-get -y
cat scylla-enterprise-packages-<version>-<arch>.txt | sudo xargs -n1 apt-get install -y
Where:
@@ -35,8 +35,18 @@ Choosing this upgrade procedure allows you to upgrade your ScyllaDB version and
Example:
.. code:: sh
.. code:: console
cat scylla-enterprise-packages-2022.1.10-x86_64.txt | sudo xargs -n1 apt-get -y
cat scylla-enterprise-packages-2022.1.10-x86_64.txt | sudo xargs -n1 apt-get install -y
.. note::
Alternatively, you can update the manifest file with the following command:
``sudo apt-get install $(awk '{print $1'} scylla-enterprise-packages-<version>-<arch>.txt) -y``
.. _upgrade-image-enterprise-upgrade-guide-regular-procedure:

View File

@@ -25,7 +25,7 @@ Choosing this upgrade procedure allows you to upgrade your ScyllaDB version and
.. code:: sh
cat scylla-packages-<version>-<arch>.txt | sudo xargs -n1 apt-get -y
cat scylla-packages-<version>-<arch>.txt | sudo xargs -n1 apt-get install -y
Where:
@@ -38,6 +38,12 @@ Choosing this upgrade procedure allows you to upgrade your ScyllaDB version and
.. code:: sh
cat scylla-packages-5.1.2-x86_64.txt | sudo xargs -n1 apt-get -y
cat scylla-packages-5.1.2-x86_64.txt | sudo xargs -n1 apt-get install -y
.. note::
Alternatively, you can update the manifest file with the following command:
``sudo apt-get install $(awk '{print $1'} scylla-packages-<version>-<arch>.txt) -y``
.. _upgrade-image-upgrade-guide-regular-procedure: