Reputation: 41
sorry to ask my questions on stackoverflow instead of ask.openstack. I really need answers and ask.openstack is useless. my questions are:
Upvotes: 0
Views: 606
Reputation:
Answer-1:
OpenStack Heat:
Heat is a service to orchestrate composite cloud applications using a declarative template format through an OpenStack-native REST API.
Heat is a project under OpenStack tent which is used for orchestration of resources using templates in yaml format
definition
, parameters
, resources
, outputs
VM
, port
, network
, subnet
... the resources are defined in template. All the supported resource types are available at https://docs.openstack.org/heat/latest/template_guide/openstack.htmlOfficial documentation of heat: https://docs.openstack.org/heat/latest/
Answer-2:
Dynamic resource allocation for instance using dashboard
Dynamic resource allocation
is allocating/changing the resources after instance is up and running, for example attach the port to instance
, attach volume to instance
, resize the instance
... . Yes these can be done from dashboard/horizon.
Answer-3:
Live-migration of instance:
Yes, live migration can be done and step by step procedure available at https://docs.openstack.org/nova/pike/admin/live-migration-usage.html
Upvotes: 1