833e640193
We don't have any tests using signal_url. We do have other tests using alarm_url. This patch changes TestAodhAlarm to use signal_url. Change-Id: I2666165e4ffd7e7c4b51ef7e3cad4b1ced0a9b06
37 lines
971 B
YAML
37 lines
971 B
YAML
heat_template_version: 2013-05-23
|
|
resources:
|
|
asg:
|
|
type: OS::Heat::AutoScalingGroup
|
|
properties:
|
|
max_size: 5
|
|
min_size: 1
|
|
resource:
|
|
type: OS::Heat::RandomString
|
|
scaleup_policy:
|
|
type: OS::Heat::ScalingPolicy
|
|
properties:
|
|
adjustment_type: change_in_capacity
|
|
auto_scaling_group_id: {get_resource: asg}
|
|
cooldown: 0
|
|
scaling_adjustment: 1
|
|
alarm:
|
|
type: OS::Aodh::Alarm
|
|
properties:
|
|
description: Scale-up if the average CPU > 50% for 1 minute
|
|
meter_name: test_meter
|
|
statistic: count
|
|
comparison_operator: ge
|
|
threshold: 1
|
|
period: 60
|
|
evaluation_periods: 1
|
|
alarm_actions:
|
|
- str_replace:
|
|
template: trust+url
|
|
params:
|
|
url: {get_attr: [scaleup_policy, signal_url]}
|
|
matching_metadata:
|
|
metadata.metering.stack_id: {get_param: "OS::stack_id"}
|
|
outputs:
|
|
asg_size:
|
|
value: {get_attr: [asg, current_size]}
|