From 6dc153d111c6c6d1a8405dbe0ec9595062dd8985 Mon Sep 17 00:00:00 2001 From: Kurt Martin Date: Thu, 11 Jun 2015 13:29:11 -0700 Subject: [PATCH] Update 3PAR user config help strings The 3PAR drivers no longer requires a user to have the 'super' access role. This patch simply updates the help strings for the 3PAR username and password to reflect that an 'edit' role will be sufficient. DocImpact Change-Id: I9b546953d06072dd614f92542b77e3a1a96f2eb5 --- cinder/volume/drivers/san/hp/hp_3par_common.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cinder/volume/drivers/san/hp/hp_3par_common.py b/cinder/volume/drivers/san/hp/hp_3par_common.py index 9b2d70afe..182e71efe 100644 --- a/cinder/volume/drivers/san/hp/hp_3par_common.py +++ b/cinder/volume/drivers/san/hp/hp_3par_common.py @@ -81,10 +81,10 @@ hp3par_opts = [ "https://<3par ip>:8080/api/v1"), cfg.StrOpt('hp3par_username', default='', - help="3PAR Super user username"), + help="3PAR username with the 'edit' role"), cfg.StrOpt('hp3par_password', default='', - help="3PAR Super user password", + help="3PAR password for the user specified in hp3par_username", secret=True), cfg.ListOpt('hp3par_cpg', default=["OpenStack"], @@ -176,10 +176,11 @@ class HP3PARCommon(object): 2.0.41 - Only log versions at startup. bug #1447697 2.0.42 - Fix type for snapshot config settings. bug #1461640 2.0.43 - Report the capability of supporting multiattach + 2.0.44 - Update help strings to reduce the 3PAR user role requirements """ - VERSION = "2.0.43" + VERSION = "2.0.44" stats = {} -- 2.45.2