From: Zhiwei Huang Date: Fri, 8 Dec 2023 03:37:24 +0000 (+0800) Subject: cephadm: Fix `cephadm shell` command help message X-Git-Tag: v19.3.0~372^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F54832%2Fhead;p=ceph.git cephadm: Fix `cephadm shell` command help message The meaning of the `--volume` option is to bind mount a volume. Signed-off-by: Zhiwei Huang --- diff --git a/src/cephadm/cephadm.py b/src/cephadm/cephadm.py index 98a2585c760c..ce100e1823d2 100755 --- a/src/cephadm/cephadm.py +++ b/src/cephadm/cephadm.py @@ -5206,7 +5206,7 @@ def _get_parser(): '--volume', '-v', action='append', default=[], - help='set environment variable') + help='mount a volume') parser_shell.add_argument( 'command', nargs=argparse.REMAINDER, help='command (optional)')