OpenStack Icehouse : Heat 利用方法2015/02/02 |
OpenStack Orchestration Service(Heat)の利用方法です。
ここでは以下のような環境を例に設定しています。
| +------------------+ | +------------------------+ | [ Control Node ] | | | [ Network Node ] | | Keystone |10.0.0.30 | 10.0.0.50| DHCP,L3,L2 Agent | | Glance |------------+------------| Metadata Agent | | Nova API |eth0 | eth0| Heat API,API-CFN | | Neutron Server | | | Heat Engine | +------------------+ | +------------------------+ eth0|10.0.0.51 +--------------------+ | [ Compute Node ] | | Nova Compute | | L2 Agent | +--------------------+ |
[1] | 構築した Heat サービスとテンプレートを利用してインスタンスをデプロイします。 作業は、どこでもよいですが、ここではコントロールノード上で行います。 |
heat_template_version: 2013-05-23 description: Heat Sample Template parameters: ImageID: type: string description: Image used to boot a server NetID: type: string description: Network ID for the server resources: server1: type: OS::Nova::Server properties: name: "Heat_Deployed_Server" image: { get_param: ImageID } flavor: "m1.small" networks: - network: { get_param: NetID } outputs: server1_private_ip: description: IP address of the server in the private network value: { get_attr: [ server1, first_address ] }
[root@dlp ~(keystone)]#
glance image-list +--------------------------------------+---------+-------------+------------------+------------+--------+ | ID | Name | Disk Format | Container Format | Size | Status | +--------------------------------------+---------+-------------+------------------+------------+--------+ | 8862e58a-ccb9-4251-a70e-03524cedf83c | CentOS6 | qcow2 | bare | 1104478208 | active | +--------------------------------------+---------+-------------+------------------+------------+--------+[root@dlp ~(keystone)]# Int_Net_ID=`neutron net-list | grep int_net | awk '{ print $2 }'`
# サンプルテンプレートからインスタンス作成 [root@dlp ~(keystone)]# heat stack-create -f sample-stack.yml -P "ImageID=CentOS6;NetID=$Int_Net_ID" Sample-Stack +--------------------------------------+--------------+--------------------+----------------------+ | id | stack_name | stack_status | creation_time | +--------------------------------------+--------------+--------------------+----------------------+ | 29875283-f0b7-46ea-a860-8ea889b9135b | Sample-Stack | CREATE_IN_PROGRESS | 2015-02-03T14:05:52Z | +--------------------------------------+--------------+--------------------+----------------------+ # しばらく待つとステータスがコンプリートになる [root@dlp ~(keystone)]# heat stack-list +--------------------------------------+--------------+-----------------+----------------------+ | id | stack_name | stack_status | creation_time | +--------------------------------------+--------------+-----------------+----------------------+ | 29875283-f0b7-46ea-a860-8ea889b9135b | Sample-Stack | CREATE_COMPLETE | 2015-02-03T14:05:52Z | +--------------------------------------+--------------+-----------------+----------------------+ # テンプレートで指定したインスタンスが起動している [root@dlp ~(keystone)]# nova list +----------------+----------------------+--------+------------+-------------+-----------------------+ | ID | Name | Status | Task State | Power State | Networks | +----------------+----------------------+--------+------------+-------------+-----------------------+ | 88c571ed-d5d3- | Heat_Deployed_Server | ACTIVE | - | Running | int_net=192.168.100.4 | +----------------+----------------------+--------+------------+-------------+-----------------------+ # 作成したものを削除する [root@dlp ~(keystone)]# heat stack-delete Sample-Stack +--------------------------------------+--------------+--------------------+----------------------+ | id | stack_name | stack_status | creation_time | +--------------------------------------+--------------+--------------------+----------------------+ | 29875283-f0b7-46ea-a860-8ea889b9135b | Sample-Stack | DELETE_IN_PROGRESS | 2015-02-03T14:05:52Z | +--------------------------------------+--------------+--------------------+----------------------+[root@dlp ~(keystone)]# heat stack-list +----+------------+--------------+---------------+ | id | stack_name | stack_status | creation_time | +----+------------+--------------+---------------+ +----+------------+--------------+---------------+ |
[2] | テンプレートの記述方法のガイドは公式サイトに記載されているので参考にしてください。 ⇒ http://docs.openstack.org/developer/heat/template_guide/index.html なお、テンプレートはある程度はサンプルが用意されているので、それを利用することもできます。 |
# テンプレートインストール [root@network ~]# yum --enablerepo=openstack-icehouse,epel -y install openstack-heat-templates # 以下の場所のそれぞれのディレクトリ配下にサンプルテンプレートが配置されている [root@network ~]# ll /usr/share/openstack-heat-templates total 20 drwxr-xr-x 6 root root 4096 Feb 4 20:07 cfn drwxr-xr-x 5 root root 4096 Feb 4 20:07 hot drwxr-xr-x 2 root root 4096 Feb 4 20:07 jeos drwxr-xr-x 4 root root 4096 Feb 4 20:07 openshift-enterprise drwxr-xr-x 4 root root 4096 Feb 4 20:07 openshift-origin |
Sponsored Link |