Add .gitreview and .zuul.yaml files
Disables one func test because of need for hardware Change-Id: Ib27b75b09fae3ad36b73d9d2109261edde892248
This commit is contained in:
4
.gitreview
Normal file
4
.gitreview
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
[gerrit]
|
||||||
|
host=review.opendev.org
|
||||||
|
port=29418
|
||||||
|
project=openstack/charm-cinder-nimblestorage.git
|
4
.zuul.yaml
Normal file
4
.zuul.yaml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
- project:
|
||||||
|
templates:
|
||||||
|
- openstack-python3-ussuri-jobs
|
||||||
|
- openstack-cover-jobs
|
@@ -1,4 +1,6 @@
|
|||||||
series: bionic
|
series: bionic
|
||||||
|
variables:
|
||||||
|
openstack-origin: &openstack-origin cloud:bionic-rocky
|
||||||
comment:
|
comment:
|
||||||
- 'machines section to decide order of deployment. database sooner = faster'
|
- 'machines section to decide order of deployment. database sooner = faster'
|
||||||
machines:
|
machines:
|
||||||
@@ -18,19 +20,18 @@ applications:
|
|||||||
charm: cs:~openstack-charmers-next/keystone
|
charm: cs:~openstack-charmers-next/keystone
|
||||||
num_units: 1
|
num_units: 1
|
||||||
options:
|
options:
|
||||||
openstack-origin: cloud:bionic-rocky
|
openstack-origin: *openstack-origin
|
||||||
to:
|
to:
|
||||||
- '1'
|
- '1'
|
||||||
cinder:
|
cinder:
|
||||||
charm: cs:~openstack-charmers-next/cinder
|
charm: cs:~openstack-charmers-next/cinder
|
||||||
num_units: 1
|
num_units: 1
|
||||||
options:
|
options:
|
||||||
openstack-origin: cloud:bionic-rocky
|
openstack-origin: *openstack-origin
|
||||||
to:
|
to:
|
||||||
- '2'
|
- '2'
|
||||||
cinder-nimblestorage:
|
cinder-nimblestorage:
|
||||||
series: bionic
|
charm: ../../cinder-nimblestorage
|
||||||
charm: cinder-nimblestorage
|
|
||||||
options:
|
options:
|
||||||
volume-driver: 'iscsi'
|
volume-driver: 'iscsi'
|
||||||
volume-backend-name: 'nimble-storage-iscsi'
|
volume-backend-name: 'nimble-storage-iscsi'
|
||||||
|
@@ -58,7 +58,7 @@ applications:
|
|||||||
charm: cs:~openstack-charmers-next/mysql-router
|
charm: cs:~openstack-charmers-next/mysql-router
|
||||||
|
|
||||||
cinder-nimblestorage:
|
cinder-nimblestorage:
|
||||||
charm: cinder-nimblestorage
|
charm: ../../cinder-nimblestorage
|
||||||
options:
|
options:
|
||||||
volume-driver: 'iscsi'
|
volume-driver: 'iscsi'
|
||||||
volume-backend-name: 'nimble-storage-iscsi'
|
volume-backend-name: 'nimble-storage-iscsi'
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
series: xenial
|
series: xenial
|
||||||
|
variables:
|
||||||
|
openstack-origin: &openstack-origin cloud:xenial-ocata
|
||||||
comment:
|
comment:
|
||||||
- 'machines section to decide order of deployment. database sooner = faster'
|
- 'machines section to decide order of deployment. database sooner = faster'
|
||||||
machines:
|
machines:
|
||||||
@@ -18,19 +20,19 @@ applications:
|
|||||||
charm: cs:~openstack-charmers-next/keystone
|
charm: cs:~openstack-charmers-next/keystone
|
||||||
num_units: 1
|
num_units: 1
|
||||||
options:
|
options:
|
||||||
openstack-origin: cloud:xenial-ocata
|
openstack-origin: *openstack-origin
|
||||||
to:
|
to:
|
||||||
- '1'
|
- '1'
|
||||||
cinder:
|
cinder:
|
||||||
charm: cs:~openstack-charmers-next/cinder
|
charm: cs:~openstack-charmers-next/cinder
|
||||||
num_units: 1
|
num_units: 1
|
||||||
options:
|
options:
|
||||||
openstack-origin: cloud:xenial-ocata
|
openstack-origin: *openstack-origin
|
||||||
to:
|
to:
|
||||||
- '2'
|
- '2'
|
||||||
cinder-nimblestorage:
|
cinder-nimblestorage:
|
||||||
series: xenial
|
series: xenial
|
||||||
charm: cinder-nimblestorage
|
charm: ../../cinder-nimblestorage
|
||||||
options:
|
options:
|
||||||
volume-driver: 'iscsi'
|
volume-driver: 'iscsi'
|
||||||
volume-backend-name: 'nimble-storage-iscsi'
|
volume-backend-name: 'nimble-storage-iscsi'
|
||||||
|
@@ -4,6 +4,8 @@ tests:
|
|||||||
configure:
|
configure:
|
||||||
- zaza.openstack.charm_tests.keystone.setup.add_demo_user
|
- zaza.openstack.charm_tests.keystone.setup.add_demo_user
|
||||||
gate_bundles:
|
gate_bundles:
|
||||||
|
- xenial-ocata
|
||||||
|
- bionic-rocky
|
||||||
- focal-ussuri
|
- focal-ussuri
|
||||||
smoke_bundles:
|
smoke_bundles:
|
||||||
- focal-ussuri
|
- focal-ussuri
|
||||||
|
@@ -66,7 +66,8 @@ class CinderNimblestorageTest(test_utils.OpenStackBaseTest):
|
|||||||
model_name=self.model_name,
|
model_name=self.model_name,
|
||||||
timeout=2)
|
timeout=2)
|
||||||
|
|
||||||
def test_create_volume(self):
|
# Disabled while there is no hardware Nimblestorage appliance
|
||||||
|
def _disabled_test_create_volume(self):
|
||||||
test_vol_name = "zaza{}".format(uuid.uuid1().fields[0])
|
test_vol_name = "zaza{}".format(uuid.uuid1().fields[0])
|
||||||
vol_new = self.cinder_client.volumes.create(
|
vol_new = self.cinder_client.volumes.create(
|
||||||
name=test_vol_name,
|
name=test_vol_name,
|
||||||
|
Reference in New Issue
Block a user