Add .gitreview file

Change-Id: I7402299e9cf93f943205e4f3ab0c874e0a4c6dec
This commit is contained in:
Unana Okpoyo 2017-06-21 12:40:39 +01:00
parent 2431381560
commit 3c8ba07289
4 changed files with 35 additions and 2 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*~
.*.sw?
.prereqs
.tox

4
.gitreview Normal file
View File

@ -0,0 +1,4 @@
[gerrit]
host=review.openstack.org
port=29418
project=openstack/devstack-plugin-vmax.git

View File

@ -5,7 +5,7 @@ This plugin enables the VMAX backend for cinder. For each backend, it creates th
* Add this repo as an external repository to localrc:: * Add this repo as an external repository to localrc::
[[local|localrc]]</br> [[local|localrc]]</br>
enable_plugin devstack-plugin-vmax https://github.com/okpoyu/devstack-plugin-vmax enable_plugin devstack-plugin-vmax https://github.com/openstack/devstack-plugin-vmax
* For each vmax cinder backend to be used in the devstack setup, add the * For each vmax cinder backend to be used in the devstack setup, add the
backend name to the enabled backends in localrc as shown below. Backend name backend name to the enabled backends in localrc as shown below. Backend name
@ -22,7 +22,7 @@ your Storage Admin for your parameters::
VMAX_Backend_1_RestServerPort=<Rest_port_number></br> VMAX_Backend_1_RestServerPort=<Rest_port_number></br>
VMAX_Backend_1_RestUserName=<Rest_password></br> VMAX_Backend_1_RestUserName=<Rest_password></br>
VMAX_Backend_1_Array=<Array_to_use></br> VMAX_Backend_1_Array=<Array_to_use></br>
VMAX_Backend_1_SRP=<insert_ip_address></br> VMAX_Backend_1_SRP=<storage_resource_pool></br>
VMAX_Backend_1_WORKLOAD=<work_load></br> VMAX_Backend_1_WORKLOAD=<work_load></br>
VMAX_Backend_1_SLO=<Service_level></br> VMAX_Backend_1_SLO=<Service_level></br>
VMAX_Backend_1_SSLVerify=<pem_file_for_ssl_verification></br> VMAX_Backend_1_SSLVerify=<pem_file_for_ssl_verification></br>

25
tox.ini Normal file
View File

@ -0,0 +1,25 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = bashate
[testenv]
usedevelop = False
install_command = pip install {opts} {packages}
[testenv:bashate]
deps = bashate
whitelist_externals = bash
commands = bash -c "find {toxinidir} \
-not \( -type d -name .?\* -prune \) \
-not \( -type d -name doc -prune \) \
-type f \
-not -name \*~ \
-not -name \*.md \
\( \
-name \*.sh -or \
-name \*rc -or \
-name functions\* -or \
-wholename \*/lib/\* \
\) \
-print0 | xargs -0 bashate -v"