Remove docker_volume_size from functional-test

To unblock our gate, in all the functional tests, create
clusters without cinder volumes.

Change-Id: Ia3b14603c5fc516b00c862c8b9257e0fd23d4b9e
Related-Bug: #1422831
This commit is contained in:
Spyros Trigazis 2016-12-08 19:36:02 +01:00
parent 3ee8dc881e
commit 8d94f5cc32
1 changed files with 2 additions and 4 deletions

View File

@ -107,7 +107,6 @@ def baymodel_data(**kwargs):
"tls_disabled": False,
"network_driver": None,
"volume_driver": None,
"docker_volume_size": 3,
"labels": {},
"public": False,
"dns_nameserver": "8.8.8.8",
@ -220,7 +219,7 @@ def valid_swarm_baymodel(is_public=False):
dns_nameserver=config.Config.dns_nameserver,
master_flavor_id=config.Config.master_flavor_id,
keypair_id=config.Config.keypair_id, coe="swarm",
docker_volume_size=3, cluster_distro=None,
cluster_distro=None,
external_network_id=config.Config.nic_id,
http_proxy=None, https_proxy=None, no_proxy=None,
network_driver=None, volume_driver=None, labels={},
@ -348,7 +347,6 @@ def cluster_template_data(**kwargs):
"tls_disabled": False,
"network_driver": None,
"volume_driver": None,
"docker_volume_size": 3,
"labels": {},
"public": False,
"dns_nameserver": "8.8.8.8",
@ -498,7 +496,7 @@ def valid_swarm_cluster_template(is_public=False):
public=is_public,
dns_nameserver=config.Config.dns_nameserver,
master_flavor_id=master_flavor_id,
coe="swarm", docker_volume_size=3,
coe="swarm",
cluster_distro=None,
external_network_id=config.Config.nic_id,
http_proxy=None, https_proxy=None,