OpenStack Epoxy : Configure Heat (Control Node) |
Install OpenStack Orchestration Service (Heat). This example is based on the environment like follows. ------------+--------------------------+--------------------------+------------
| | |
eth0|10.0.0.30 eth0|10.0.0.50 eth0|10.0.0.51
+-----------+-----------+ +-----------+-----------+ +-----------+-----------+
| [ dlp.srv.world ] | | [ network.srv.world ] | | [ node01.srv.world ] |
| (Control Node) | | (Network Node) | | (Compute Node) |
| | | | | |
| MariaDB RabbitMQ | | Open vSwitch | | Libvirt |
| Memcached Nginx | | Neutron Server | | Nova Compute |
| Keystone httpd | | OVN-Northd | | Open vSwitch |
| Glance Nova API | | Nginx iSCSI Target | | OVN Metadata Agent |
| Cinder API | | Cinder Volume | | OVN-Controller |
| | | Heat API/Engine | | |
+-----------------------+ +-----------------------+ +-----------------------+
|
| [1] | Add users and so on for Heat services in Keystone on the Control Node. |
# create [heat] user in [service] project root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword heat +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | a60814a6c56241edbbdfae6c290f8abc | | domain_id | default | | email | None | | enabled | True | | id | 0210304ac2d64018aab08e48ffb1ce86 | | name | heat | | description | None | | password_expires_at | None | +---------------------+----------------------------------+ # add [heat] user in [admin] role root@dlp ~(keystone)# openstack role add --project service --user heat admin # create a role [heat_stack_owner] for [heat] root@dlp ~(keystone)# openstack role create heat_stack_owner +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | id | c821194726504d8cbc480d8f993cb22b | | name | heat_stack_owner | | domain_id | None | | description | None | +-------------+----------------------------------+root@dlp ~(keystone)# openstack role create heat_stack_user +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | id | 07ce3758f5024ba0b7e4fbc7d6c959fb | | name | heat_stack_user | | domain_id | None | | description | None | +-------------+----------------------------------+ # add [admin] user in [heat_stack_owner] role root@dlp ~(keystone)# openstack role add --project admin --user admin heat_stack_owner # create service entry for [heat] root@dlp ~(keystone)# openstack service create --name heat --description "Openstack Orchestration" orchestration +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | id | e7dbcb16bc7f4ea6a47b777a22847c7d | | name | heat | | type | orchestration | | enabled | True | | description | Openstack Orchestration | +-------------+----------------------------------+root@dlp ~(keystone)# openstack service create --name heat-cfn --description "Openstack Orchestration" cloudformation +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | id | 257922a1084941b8bd97017fe1aaa3e4 | | name | heat-cfn | | type | cloudformation | | enabled | True | | description | Openstack Orchestration | +-------------+----------------------------------+ # define Heat API Host root@dlp ~(keystone)# heat_api=network.srv.world # create endpoint for [orchestration] (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne orchestration public http://$heat_api:8004/v1/%\(tenant_id\)s +--------------+------------------------------------------------+ | Field | Value | +--------------+------------------------------------------------+ | enabled | True | | id | d05341c2a8fa407ba1f65040e44470f9 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | e7dbcb16bc7f4ea6a47b777a22847c7d | | service_name | heat | | service_type | orchestration | | url | http://network.srv.world:8004/v1/%(tenant_id)s | +--------------+------------------------------------------------+ # create endpoint for [orchestration] (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne orchestration internal http://$heat_api:8004/v1/%\(tenant_id\)s +--------------+------------------------------------------------+ | Field | Value | +--------------+------------------------------------------------+ | enabled | True | | id | a38aa52accbe48a89cdb920609b8f4e7 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | e7dbcb16bc7f4ea6a47b777a22847c7d | | service_name | heat | | service_type | orchestration | | url | http://network.srv.world:8004/v1/%(tenant_id)s | +--------------+------------------------------------------------+ # create endpoint for [orchestration] (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne orchestration admin http://$heat_api:8004/v1/%\(tenant_id\)s +--------------+------------------------------------------------+ | Field | Value | +--------------+------------------------------------------------+ | enabled | True | | id | 84c6b107b7b248428f0e680514224f0a | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | e7dbcb16bc7f4ea6a47b777a22847c7d | | service_name | heat | | service_type | orchestration | | url | http://network.srv.world:8004/v1/%(tenant_id)s | +--------------+------------------------------------------------+ # create endpoint for [cloudformation] (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne cloudformation public http://$heat_api:8000/v1 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 1ee4804f2e1e49c392632bbf5d003fee | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 257922a1084941b8bd97017fe1aaa3e4 | | service_name | heat-cfn | | service_type | cloudformation | | url | http://network.srv.world:8000/v1 | +--------------+----------------------------------+ # create endpoint for [cloudformation] (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne cloudformation internal http://$heat_api:8000/v1 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | b20a9a73182f4a138f32c64c9ce31830 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 257922a1084941b8bd97017fe1aaa3e4 | | service_name | heat-cfn | | service_type | cloudformation | | url | http://network.srv.world:8000/v1 | +--------------+----------------------------------+ # create endpoint for [cloudformation] (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne cloudformation admin http://$heat_api:8000/v1 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | b1d11ecc492e472fb63e24a89d60e040 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 257922a1084941b8bd97017fe1aaa3e4 | | service_name | heat-cfn | | service_type | cloudformation | | url | http://network.srv.world:8000/v1 | +--------------+----------------------------------+ # create Heat domain root@dlp ~(keystone)# openstack domain create --description "Stack projects and users" heat +-------------+----------------------------------+
| Field | Value |
+-------------+----------------------------------+
| description | Stack projects and users |
| enabled | True |
| id | a860ff4379b84fac9a0e2b8ac2b18f61 |
| name | heat |
| options | {} |
| tags | [] |
+-------------+----------------------------------+
# create [heat_domain_admin] user root@dlp ~(keystone)# openstack user create --domain heat --password servicepassword heat_domain_admin +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | None | | domain_id | a860ff4379b84fac9a0e2b8ac2b18f61 | | email | None | | enabled | True | | id | c54e603aa0164242a697ba1af3b18c45 | | name | heat_domain_admin | | description | None | | password_expires_at | None | +---------------------+----------------------------------+ # add [heat_domain_admin] user to [admin] role root@dlp ~(keystone)# openstack role add --domain heat --user heat_domain_admin admin |
| [2] | Create a database for Heat to MariaDB. |
| root@dlp ~(keystone)# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 206 Server version: 11.8.2-MariaDB-1 from Debian -- Please help get to 10k stars at https://github.com/MariaDB/Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create database heat; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> grant all privileges on heat.* to heat@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> grant all privileges on heat.* to heat@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye |
Matched Content
No comments:
Post a Comment