loadbalancer.py hard-coded for Fedora17?

Asked by t.goto

Hello.

I'm trying to test Autoscaling with Openstack havana rc1, but I was bumped with following error ,
"StackValidationFailed: The Image (F17-x86_64-cfntools) could not be found."
Since my template includes no such word I looked into sources, and I found that loadbalancer.py seems hard-coded for Fedora17.

My question is, Is autoscaling not yet implemeted for OpenStack heat? or Is there other method I missed?

Thank you for advance :)

Question information

Language:
English Edit question
Status:
Solved
For:
OpenStack Heat Edit question
Assignee:
No assignee Edit question
Solved by:
Steven Hardy
Solved:
Last query:
Last reply:
Revision history for this message
Best Steven Hardy (shardy) said :
#1

Unfortunately this is a known issue, we need to update the nested AWS::ElasticLoadBalancing::LoadBalancer resource template to use a newer version of Fedora, as F17 is EOL.

Your options are:
- Download the F17 image which is currently required, and upload it to glance:
http://fedorapeople.org/groups/heat/prebuilt-jeos-images/

- Use the quantum LBaaS resource instead
http://docs.openstack.org/developer/heat/template_guide/openstack.html#OS::Neutron::LoadBalancer

I've linked the related bug

Revision history for this message
t.goto (t.goto) said :
#2

Thank you for quick response, shardy :)
I'll try the OS::Neutron::LoadBalancer instead.

Revision history for this message
t.goto (t.goto) said :
#3

Thanks Steven Hardy, that solved my question.