]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Update 3PAR user config help strings
authorKurt Martin <kurt.f.martin@hp.com>
Thu, 11 Jun 2015 20:29:11 +0000 (13:29 -0700)
committerKurt Martin <kurt.f.martin@hp.com>
Mon, 15 Jun 2015 15:54:15 +0000 (08:54 -0700)
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

index 9b2d70afefb8893693764e25bc574cc16ea52775..182e71efe599c3044054f9a90f655e802b029a7c 100644 (file)
@@ -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 = {}