Heat安装
一、数据库配置
Controller节点
# mysql -uroot -p123456
MariaDB [(none)]> create database heat;
MariaDB [(none)]> grant all privileges on heat.* to 'heat'@'localhost' identified by '123456';
MariaDB [(none)]> grant all privileges on heat.* to 'heat'@'%' identified by '123456';
MariaDB [(none)]> exit
二、创建服务凭证和API端点
Controller节点
1.创建服务凭证
# . /root/admin-openrc
# openstack user create --domain default --password-prompt heat
User Password:
Repeat User Password:
# openstack role add --project service --user heat admin
# openstack service create --name heat --description "Orchestration" orchestration
# openstack service create --name heat-cfn --description "Orchestration" cloudformation