Heat入门第一步
Posted peach_li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Heat入门第一步相关的知识,希望对你有一定的参考价值。
Heat 类似于AWS的CloudFormation, 是OpenStack Orchestration进程的一个项目,OpenStack Orchestration旨在创建一个人性化的服务去管理整个云架构,服务和应用的生命周期。heat实现了一种自动化的通过简单定义和配置就能实现的云部署方式。可以在heat模板中定义连串相关任务(例如用某配置开几台虚拟机,然后再去在其中一台中安装一个mysql服务,设定相关数据库属性,然后再配置几台虚拟机安装web服务集群等等),然后交由heat,由heat按照一定的顺序执行heat模板中定义的一连串任务。利用heat还可以连接到neutron来帮助编排负载均衡和其他网络功能。学习heat主要学习heat的template,heat的template描述了所用的所有组件资源以及组件资源之间的关系。 这些资源包括:servers,floating ips, volumes, security groups, users and others. Heat管理这些组件的生命周期,当你需要对现在的部署做一些修改的时候,你只需要对template做一些修改即可。Heat还可以与其他软件管理工具集成比如Puppet以及chef。
安装Heat
选择一个VM镜像,可以选择 http://cloud.fedoraproject.org/fedora-20.x86_64.qcow2F20 ,它包含了heat-cfntools包,当运行./stack.sh的时候Heat将会被加载到screen中前缀是h-. 假如需要使用Ceilometer Alarms功能你需要添加Ceilometer功能。需要做的是在devstack的localrc文件中添加如下:
- CEILOMETER_BACKEND=mysql
- enable_service ceilometer-acompute ceilometer-acentral ceilometer-collector ceilometer-api
- enable_service ceilometer-alarm-notifier ceilometer-alarm-evaluator
- #sudo apt-get install gitgit-review ctags
首先下载devstack
#git clone https://github.com/openstack-dev/devstack.git
然后准备localrc如下,灵活选择你感兴趣的项目,做减法处理。注意假如你的环境在proxy后面,而proxy又不支持git时,可以将stackrc中的GIT_BASE=$GIT_BASE:-git://git.openstack.org改为GIT_BASE=$GIT_BASE:- https://github.com
- #The localrc is used to deploy a Neutron+OVS+heat+ceilometer+tempest development env
- #OFFLINE True if no need to pull necessary packages again
- #OFFLINE=True
- #RECLONE True if all need a fresh repo environment
- #RECLONE=True
- ADMIN_PASSWORD=123
- MYSQL_PASSWORD=123
- RABBIT_PASSWORD=123
- SERVICE_PASSWORD=123
- SERVICE_TOKEN=123
- Q_PLUGIN=openvswitch
- disable_service n-net
- #enable necessary network comps
- ENABLED_SERVICES+=,neutron,q-svc,q-agt,q-dhcp,q-l3,q-meta
- #enable advanced services
- enable_service q-vpn q-lbaas q-fwaas
- #enable tempest for learning tempest
- enable_service tempest
- #enable heat
- enable_service heat h-api h-api-cfn h-api-cw h-eng
- #enable ceilometer for Ceilometer Alarms
- CEILOMETER_BACKEND=mysql
- enable_service ceilometer-acompute ceilometer-acentral ceilometer-collector ceilometer-anotification
- enable_service ceilometer-api
- enable_service ceilometer-alarm-notifier ceilometer-alarm-evaluator
-
- HOST_IP=<Host-IP>
- #VM images
- IMAGE_URLS="http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-i386-uec.tar.gz"
- #IMAGE_URLS+=",http://uec-images.ubuntu.com/precise/current/precise-server-cloudimg-amd64-disk1.img"
- IMAGE_URLS+=",http://cloud.fedoraproject.org/fedora-20.x86_64.qcow2"
-
- http_proxy=<http-proxy>
- https_proxy=<https-proxy>
- no_proxy=localhost,<Host-IP>
-
- #for IPSec VPNaaS
- IPSEC_PACKAGE=openswan
-
- #LOG configure
- SCREEN_LOGDIR=/opt/stack/screen-logs
- SYSLOG=True
- #DEST=/opt/stack/project
模板
https://github.com/openstack/heat-templates 提供一些templates参考例子来展示heat的一些核心功能。heat目前支持两种模板: 与CloudFormatior兼容的cnf目录下的模板以及自研的在hot目录下的HOT模板。 HOT模板基于YAML来展示,下面仅研究HOT模板。
写一个HOT hello world 模板
hello template file:
- heat_template_version: 2013-05-23
-
- description: Simple template to deploy a single compute instance
-
- resources:
- my_instance:
- type: OS::Nova::Server
- properties:
- key_name: heat_key
- image: cirros-0.3.0-i386-uec
- flavor: m1.tiny
查找上面模板相关参数的CLI过程如下:
- #admin tenant
- stack@vm:~/devstack$ . openrc admin admin
- #create heat_key keypair
- stack@vm:~$ nova keypair-add heat_key
- #get available image name
- stack@vm:~$ nova image-list
- #get instance ttype
- stack@vm:~$ nova flavor-list
- #create stack hello-stack with helo HOT
- stack@vm:~/hot-files$ heat stack-create -f ./hello hello-stack
- #list stack status
- stack@vm:~/hot-files$ heat stack-list
- #show events status of hello-stack
- stack@vm:~/hot-files$ heat event-list hello-stack
- #show status of hello-stack
- stack@vm:~/hot-files$ heat stack-show hello-stack
- heat_template_version: 2013-05-23
-
- description: Simple template to deploy a single compute instance
-
- parameters:
- key_name:
- type: string
- label: Key Name
- description: Name of key-pair to be used for compute instance
- image_name:
- type: string
- label: Image Name
- description: Image to be used for compute instance
- instance_type:
- type: string
- label: Instance Type
- description: Type of instance (flavor) to be used
-
- outputs:
- instance_ip:
- description: the ip addresss of the deployed instance_type
- value: get_attr: [my_instance, first_address]
-
- resources:
- my_instance:
- type: OS::Nova::Server
- properties:
- key_name: get_param: key_name
- image: get_param: image_name
- flavor: get_param: instance_type
- stack@vm:~/hot-files$ heat stack-create -f ./hello_input -P "key_name=heat_key;instance_type=m1.tiny;image_name=cirros-0.3.0-i386-uec" stack-vm2
-
- stack@vm:~/hot-files$ heat stack-list
以上是关于Heat入门第一步的主要内容,如果未能解决你的问题,请参考以下文章