diff options
| author | Brianna Poulos <Brianna.Poulos@jhuapl.edu> | 2018-02-16 16:06:19 -0500 |
|---|---|---|
| committer | Brianna Poulos <Brianna.Poulos@jhuapl.edu> | 2018-02-16 16:06:19 -0500 |
| commit | 5e5f6a2d8aa018e56e522ee2bd486a0123575f5f (patch) | |
| tree | 2275f51a010a3e4168bf863ddae041d2ff7c6bf9 /cinderclient | |
| parent | eb2f4d3ae86f28ebcf9312968503e28ed0216a69 (diff) | |
| download | python-cinderclient-5e5f6a2d8aa018e56e522ee2bd486a0123575f5f.tar.gz | |
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
Diffstat (limited to 'cinderclient')
| -rw-r--r-- | cinderclient/v2/shell.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py index 9a5d7c5..8e94f03 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='<provider>', 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='<cipher>', 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='<cipher>', type=str, |
