summaryrefslogtreecommitdiff
path: root/scripts/conf/postgresql.conf
diff options
context:
space:
mode:
authorPetr Malik <pmalik@tesora.com>2016-03-04 11:27:57 -0500
committerPetr Malik <pmalik@tesora.com>2016-04-14 20:52:00 +0000
commit3bfaed934b27896886833ce2b0d5c10a0ce85b8f (patch)
treed35a10a3ecea132fa114b9922d1adb9d9ea04875 /scripts/conf/postgresql.conf
parente702dda2b5295e1e96fea39605d9a5e427ac4e97 (diff)
downloadtrove-integration-3bfaed934b27896886833ce2b0d5c10a0ce85b8f.tar.gz
Fix "trove_volume_size" test prop type
'trove_volume_size' test property should be an integer. Mongodb and Postgresql test configs define it as a string causing the scenario tests to fail on these datastores. Also add a large-disk flavors for datastores that require more space on the root volume (Vertica). Change-Id: I352580bc4967ba2d7125e26f037ca4bcda31b2b4
Diffstat (limited to 'scripts/conf/postgresql.conf')
-rw-r--r--scripts/conf/postgresql.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/conf/postgresql.conf b/scripts/conf/postgresql.conf
index a47f0eb..8033f58 100644
--- a/scripts/conf/postgresql.conf
+++ b/scripts/conf/postgresql.conf
@@ -1,6 +1,6 @@
- "instance_flavor_name": "test.medium",
- "instance_bigger_flavor_name": "test.medium.resize",
- "instance_eph_flavor_name": "test.eph.medium",
- "instance_bigger_eph_flavor_name": "test.eph.medium.resize",
+ "instance_flavor_name": "test.medium-4",
+ "instance_bigger_flavor_name": "test.medium-4.resize",
+ "instance_eph_flavor_name": "test.eph.medium-4",
+ "instance_bigger_eph_flavor_name": "test.eph.medium-4.resize",
"trove_volume_support": true,
- "trove_volume_size": "1",
+ "trove_volume_size": 1,