summaryrefslogtreecommitdiffstats
path: root/tosca2heat/heat-translator/translator/tests/data/hot_output/autoscaling/hot_autoscaling.yaml
blob: a83f019d9785bfd70320e4bb8e8419461ee56af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
heat_template_version: 2013-05-23

description: >
  Template for deploying servers based on policies.

parameters: {}
resources:
  asg_group:
    type: OS::Heat::AutoScalingGroup
    properties:
      min_size: 2
      desired_capacity: 3
      cooldown: 60
      resource:
        type: asg_res.yaml
      max_size: 10
  asg_scale_out:
    type: OS::Heat::ScalingPolicy
    properties:
      auto_scaling_group_id:
        get_resource: asg_group
      adjustment_type: change_in_capacity
      scaling_adjustment: 1
      cooldown: 60
  asg_scale_in:
    type: OS::Heat::ScalingPolicy
    properties:
      auto_scaling_group_id:
        get_resource: asg_group
      adjustment_type: change_in_capacity
      scaling_adjustment: -1
      cooldown: 60
  asg_alarm:
    type: OS::Aodh::Alarm
    properties:
      meter_name: cpu_util
      description: Simple node autoscaling
      period: 60
      statistic: avg
      threshold: 1
      comparison_operator: gt
outputs: {}