Merge "Don't hardcode network cidr in specs"

This commit is contained in:
Ben Nemec 2015-03-20 19:19:18 +01:00 committed by Gerrit Code Review
commit 9c2462c222
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
[
('disk', '$disk', 'size', 'gt(4)'),
('network', '$eth', 'ipv4', 'network(192.0.2.0/24)'),
('network', '$eth', 'ipv4', 'network({{neutron.network_cidr}})'),
('memory', 'total', 'size', 'ge(4294967296)'),
]

View File

@ -1,5 +1,5 @@
[
('disk', '$disk', 'size', 'gt(4)'),
('network', '$eth', 'ipv4', 'network(192.0.2.0/24)'),
('network', '$eth', 'ipv4', 'network({{neutron.network_cidr}})'),
('memory', 'total', 'size', 'ge(2147483648)'),
]