diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-09-20 13:46:12 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-09-20 13:51:55 +0400 |
commit | 14b6578d2d40a3335d361ad234accb804245e3e4 (patch) | |
tree | 0e06ef31aaf7af5e6335371d98e8ca71484d6c71 | |
parent | 6229af39550dfef0b44f79b5d17c184bb098e692 (diff) |
Reduce flavor resources of heat template
In order to pass the HeatUtilsCreateComplexStackTests
request an affordable amount of compute resources.
Change-Id: I7d99435ce9500cc96e2e25828f1a804687df69e0
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
-rw-r--r-- | snaps/openstack/tests/heat/floating_ip_heat_template.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/snaps/openstack/tests/heat/floating_ip_heat_template.yaml b/snaps/openstack/tests/heat/floating_ip_heat_template.yaml index 9da1cb7..e09515e 100644 --- a/snaps/openstack/tests/heat/floating_ip_heat_template.yaml +++ b/snaps/openstack/tests/heat/floating_ip_heat_template.yaml @@ -80,15 +80,15 @@ resources: flavor1: type: OS::Nova::Flavor properties: - ram: 4096 - vcpus: 4 - disk: 4 + ram: 1024 + vcpus: 2 + disk: 2 flavor2: type: OS::Nova::Flavor properties: - ram: 4096 - vcpus: 4 - disk: 4 + ram: 1024 + vcpus: 2 + disk: 2 network: type: OS::Neutron::Net |