diff --git a/README.md b/README.md index bda3ffdf2..b85865062 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ To run the VM storage tests on the Dell PowerFlex driver, provide the following * `POWERFLEX_GATEWAY_VERIFY`: Whether to verify the HTTP gateway's certificate. The default is `true`. * `POWERFLEX_USER`: Name of the PowerFlex user * `POWERFLEX_PASSWORD`: Password of the PowerFlex user +* `POWERFLEX_MODE`: Operation mode for the consumption of storage volumes. The default is `nvme`. # Infrastructure managed by IS diff --git a/bin/helpers b/bin/helpers index f926ffad8..b47bc9731 100644 --- a/bin/helpers +++ b/bin/helpers @@ -199,7 +199,8 @@ createPowerFlexPool() ( powerflex.gateway="${POWERFLEX_GATEWAY}" \ powerflex.gateway.verify="${POWERFLEX_GATEWAY_VERIFY:-true}" \ powerflex.user.name="${POWERFLEX_USER}" \ - powerflex.user.password="${POWERFLEX_PASSWORD}" + powerflex.user.password="${POWERFLEX_PASSWORD}" \ + powerflex.mode="${POWERFLEX_MODE:-nvme}" ) # createCertificateAndKey: creates a new key pair.