From 5e5f6a2d8aa018e56e522ee2bd486a0123575f5f Mon Sep 17 00:00:00 2001 From: Brianna Poulos Date: Fri, 16 Feb 2018 16:06:19 -0500 Subject: [PATCH] Update help text for encryption provider The volume encryption provider no longer uses class names. Instead, 'luks' and 'plain' are used. This patch updates the help text for the volume encryption provider to use the new encryption provider format constants. Change-Id: I6072e18f8c1945082f421a3bf725a874565d6f80 --- cinderclient/v2/shell.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py index 9a5d7c582..8e94f0334 100644 --- a/cinderclient/v2/shell.py +++ b/cinderclient/v2/shell.py @@ -1658,8 +1658,8 @@ def do_encryption_type_show(cs, args): @utils.arg('provider', metavar='', type=str, - help='The class that provides encryption support. ' - 'For example, LuksEncryptor.') + help='The encryption provider format. ' + 'For example, "luks" or "plain."') @utils.arg('--cipher', metavar='', type=str, @@ -1717,7 +1717,7 @@ def do_encryption_type_create(cs, args): type=str, required=False, default=argparse.SUPPRESS, - help="Class providing encryption support (e.g. LuksEncryptor)") + help="Encryption provider format (e.g. 'luks' or 'plain').") @utils.arg('--cipher', metavar='', type=str,