From 3c8ba072897a9b13c5c8cfccc430fbdf34b61961 Mon Sep 17 00:00:00 2001 From: Unana Okpoyo Date: Wed, 21 Jun 2017 12:40:39 +0100 Subject: [PATCH] Add .gitreview file Change-Id: I7402299e9cf93f943205e4f3ab0c874e0a4c6dec --- .gitignore | 4 ++++ .gitreview | 4 ++++ README.md | 4 ++-- tox.ini | 25 +++++++++++++++++++++++++ 4 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 .gitreview create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dcf51ce --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*~ +.*.sw? +.prereqs +.tox diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..53f157e --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=review.openstack.org +port=29418 +project=openstack/devstack-plugin-vmax.git diff --git a/README.md b/README.md index 2c2d649..a2e02bc 100644 --- a/README.md +++ b/README.md @@ -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:: [[local|localrc]]
- 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 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=
VMAX_Backend_1_RestUserName=
VMAX_Backend_1_Array=
- VMAX_Backend_1_SRP=
+ VMAX_Backend_1_SRP=
VMAX_Backend_1_WORKLOAD=
VMAX_Backend_1_SLO=
VMAX_Backend_1_SSLVerify=
diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..8e75f0d --- /dev/null +++ b/tox.ini @@ -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"