From 3071316fe3c135a38a1be8631d5b0cbeac4e8985 Mon Sep 17 00:00:00 2001 From: Zhiwei Huang Date: Fri, 8 Dec 2023 11:37:24 +0800 Subject: [PATCH] cephadm: Fix `cephadm shell` command help message The meaning of the `--volume` option is to bind mount a volume. Signed-off-by: Zhiwei Huang --- src/cephadm/cephadm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)') -- 2.47.3