From bf69cdc68970789a7410928bd8a1af34d0d9b6a2 Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Fri, 29 Jan 2021 14:15:26 -0500 Subject: [PATCH] doc: fixes for cephadm documentation Be sure to note that python 3 is a prerequisite. Minimal centos 8 installs don't have it, for instance. Also, we probably don't want to hardcode an octopus URL into the suggested curl command. Change it to fill that in with "|stable-release|", which should always point to the latest released version name. Fixes: https://tracker.ceph.com/issues/49806 Signed-off-by: Jeff Layton --- doc/cephadm/install.rst | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/cephadm/install.rst b/doc/cephadm/install.rst index 4bea6a58878..6efb07edec8 100644 --- a/doc/cephadm/install.rst +++ b/doc/cephadm/install.rst @@ -11,6 +11,7 @@ then deploying the needed services. Requirements ============ +- Python 3 - Systemd - Podman or Docker for running containers - Time synchronization (such as chrony or NTP) @@ -44,8 +45,9 @@ curl-based installation standalone script. .. prompt:: bash # + :substitutions: - curl --silent --remote-name --location https://github.com/ceph/ceph/raw/octopus/src/cephadm/cephadm + curl --silent --remote-name --location https://github.com/ceph/ceph/raw/|stable-release|/src/cephadm/cephadm Make the ``cephadm`` script executable: @@ -65,9 +67,10 @@ curl-based installation run the following commands: .. prompt:: bash # + :substitutions: - ./cephadm add-repo --release octopus - ./cephadm install + ./cephadm add-repo --release |stable-release| + ./cephadm install Confirm that ``cephadm`` is now in your PATH by running ``which``: @@ -236,9 +239,10 @@ command. There are several ways to do this: CephFS file systems), etc.: .. prompt:: bash # + :substitutions: - cephadm add-repo --release octopus - cephadm install ceph-common + cephadm add-repo --release |stable-release| + cephadm install ceph-common Confirm that the ``ceph`` command is accessible with: -- 2.47.3