7fb95d178a
The patch adds the following test cases to create-update-delete stack scenario: Case 1: - Heat creates a new stack - Heat updates the stack and one of stack resources without replacing the resource itself - Heat deletes the stack Case 2: - Heat creates a stack - Heat updates the stack and replaces one of stack resource with the new resource - Heat deletes the stack. Change-Id: I9a263a6ee5832cd039f574d4515167eb691ec19f
19 lines
627 B
Plaintext
19 lines
627 B
Plaintext
heat_template_version: 2014-10-16
|
|
|
|
description: >
|
|
Test template for create-update-delete-stack scenario in rally.
|
|
The template deletes one resource from the stack defined by
|
|
random_strings.yaml.template and re-creates it with the updated parameters
|
|
(so-called update-replace). That happens because some parameters cannot be
|
|
changed without resource re-creation. The template allows to measure performance
|
|
of update-replace operation.
|
|
|
|
resources:
|
|
test_string_one:
|
|
type: OS::Heat::RandomString
|
|
properties:
|
|
length: 20
|
|
test_string_two:
|
|
type: OS::Heat::RandomString
|
|
properties:
|
|
length: 40 |