mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #1324 from dprince/openstack_limit_test_fixes
OpenStack: Remove volumes from limits tests.
This commit is contained in:
commit
93086cee2a
2 changed files with 0 additions and 8 deletions
|
@ -63,19 +63,15 @@ module Fog
|
|||
'maxPersonalitySize' => 10240,
|
||||
'maxSecurityGroupRules' => 20,
|
||||
'maxTotalKeypairs' => 100,
|
||||
'maxTotalVolumes' => 10,
|
||||
'maxSecurityGroups' => 10,
|
||||
'maxTotalCores' => 20,
|
||||
'maxTotalFloatingIps' => 10,
|
||||
'maxTotalVolumeGigabytes' => 1000,
|
||||
'maxTotalRAMSize' => 51200,
|
||||
|
||||
# Used
|
||||
'totalVolumesUsed' => 0,
|
||||
'totalCoresUsed' => -1,
|
||||
'totalRAMUsed' => -2048,
|
||||
'totalInstancesUsed' => -1,
|
||||
'totalVolumeGigabytesUsed' => 0,
|
||||
'totalSecurityGroupsUsed' => 0,
|
||||
'totalKeyPairsUsed' => 0
|
||||
}
|
||||
|
|
|
@ -21,17 +21,13 @@ Shindo.tests('Fog::Compute[:openstack] | limits requests', ['openstack']) do
|
|||
'maxPersonalitySize' => Fixnum,
|
||||
'maxSecurityGroupRules' => Fixnum,
|
||||
'maxTotalKeypairs' => Fixnum,
|
||||
'maxTotalVolumes' => Fixnum,
|
||||
'maxSecurityGroups' => Fixnum,
|
||||
'maxTotalCores' => Fixnum,
|
||||
'maxTotalFloatingIps' => Fixnum,
|
||||
'maxTotalVolumeGigabytes' => Fixnum,
|
||||
'maxTotalRAMSize' => Fixnum,
|
||||
'totalVolumesUsed' => Fixnum,
|
||||
'totalCoresUsed' => Fixnum,
|
||||
'totalRAMUsed' => Fixnum,
|
||||
'totalInstancesUsed' => Fixnum,
|
||||
'totalVolumeGigabytesUsed' => Fixnum,
|
||||
'totalSecurityGroupsUsed' => Fixnum,
|
||||
'totalKeyPairsUsed' => Fixnum
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue