Install and Configure Openstack Heat on Pike Centos7
Step 1: Create the Heat user # openstack user create --domain default --password service_pass heat Step 2: Add the admin role to the heat user and service project # openstack role add --project service --user heat admin Step 3: Create the heat and heat-cfn service entities: # openstack service create --name heat --description "Orchestration" orchestration # openstack service create --name heat-cfn --description "Orchestration" cloudformation Step 4: Create the service API endpoints # openstack endpoint create --region RegionOne orchestration public http://192.168.1.121:8004/v1/%\(tenant_id\)s # openstack endpoint create --region RegionOne orchestration internal http://10.10.100.121:8004/v1/%\(tenant_id\)s # openstack endpoint create --region RegionOne orchestration admin http://10.10.100.121:8004/v1/%\(tenant_id\)s #