Need to create Heat+Ceilometer autoscaling OSTF test

Bug #1361576 reported by Anastasia Kuznetsova
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Fuel for OpenStack
Fix Released
Wishlist
Anastasia Kuznetsova

Bug Description

Now we have OSTF test that check autoscaling using heat resources. Also need to have one more test that will check autoscaling using Ceilometer resources.

Firstly appropriate template has to be created.

Changed in fuel:
assignee: nobody → Sergey Kraynev (skraynev)
importance: Undecided → Wishlist
status: New → Triaged
milestone: none → next
Revision history for this message
Sergey Kraynev (skraynev) wrote :
Download full text (6.1 KiB)

template was verified and now is ready.

heat_template_version: '2013-05-23'
description: Autoscaling using Ceilometer
parameters:
  InstanceType:
    type: string
  ImageId:
    type: string
    default: fedora-20.x86_64
  Subnet:
    type: string
    default: 8be6bc51-3ad7-44f9-b215-69fa68cac8a8
  KeyName:
    type: string
    default: heat_key
  SecurityGroup:
    type: string
    default: default
resources:
  AGroup:
    type: AWS::AutoScaling::AutoScalingGroup
    properties:
      AvailabilityZones: {'Fn::GetAZs': ""}
      LaunchConfigurationName: {Ref: LaunchConfig}
      MinSize: '1'
      MaxSize: '2'
      VPCZoneIdentifier: [{Ref: Subnet}]
  AScaleUpPolicy:
    type: AWS::AutoScaling::ScalingPolicy
    properties:
      AdjustmentType: ChangeInCapacity
      AutoScalingGroupName: {Ref: AGroup}
      Cooldown: '30'
      ScalingAdjustment: '1'
  AScaleDownPolicy:
    type: AWS::AutoScaling::ScalingPolicy
    properties:
      AdjustmentType: ChangeInCapacity
      AutoScalingGroupName: {Ref: AGroup}
      Cooldown: '30'
      ScalingAdjustment: '-1' ...

Read more...

Changed in fuel:
assignee: Sergey Kraynev (skraynev) → Anastasia Kuznetsova (akuznetsova)
Mike Scherbakov (mihgen)
Changed in fuel:
milestone: next → 6.0
Revision history for this message
Dmitry Mescheryakov (dmitrymex) wrote :

We've already reached Soft Code Freeze, so it is too late to fix this in 6.0

Changed in fuel:
milestone: 6.0 → 6.0.1
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to fuel-ostf (master)

Fix proposed to branch: master
Review: https://review.openstack.org/136711

Changed in fuel:
status: Triaged → In Progress
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to fuel-ostf (master)

Reviewed: https://review.openstack.org/136711
Committed: https://git.openstack.org/cgit/stackforge/fuel-ostf/commit/?id=52fb4bf568a3756943fda45b1c6246756942235e
Submitter: Jenkins
Branch: master

commit 52fb4bf568a3756943fda45b1c6246756942235e
Author: Anastasia Kuznetsova <email address hidden>
Date: Mon Nov 24 12:31:42 2014 +0400

    Update Heat autoscaling test

    Heat OSTF test 'test autoscaling' was updated:
    - Added new templates to use Ceilometer autoscaling resources
    - Added checks to the test that Ceilometer is installed
    - Removed now unnecessary Fedora17 image checks

    Now in this test we will check Heat+Ceilometer autoscaling instead
    of native one. So it is totally different test.

    Closes-Bug: #1361576
    Change-Id: I535709f0be8392d5aad988b461f996f43340d252

Changed in fuel:
status: In Progress → Fix Committed
Changed in fuel:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.