Browse Source
There are follow important changes in patch: - New constraint was added. This constraint emulate delay during resolving custom constraint for property. - New property was added for TestResource. This property uses new constraint. - Added Rally scenario create-delete, which uses template with ResourceGroup of TestResources with custom constraint. Depends-On: I06183138d54c1cb971a58a158a15f3f5b25cba4d Change-Id: I53d83f59be9bd27db451f87aaae2d8446f287c17changes/50/279450/9
5 changed files with 52 additions and 0 deletions
@ -0,0 +1,19 @@
|
||||
heat_template_version: 2013-05-23 |
||||
description: Template for testing caching. |
||||
parameters: |
||||
count: |
||||
type: number |
||||
default: 40 |
||||
delay: |
||||
type: number |
||||
default: 0.3 |
||||
|
||||
resources: |
||||
rg: |
||||
type: OS::Heat::ResourceGroup |
||||
properties: |
||||
count: {get_param: count} |
||||
resource_def: |
||||
type: OS::Heat::TestResource |
||||
properties: |
||||
constraint_prop_secs: {get_param: delay} |
Loading…
Reference in new issue