OpenStack Victoria : Configure Heat (Control Node)2021/09/01 |
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 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ Control Node ] | | [ Network Node ] | | [ Compute Node ] | | | | | | | | MariaDB RabbitMQ | | L2 Agent | | Libvirt | | Memcached httpd | | L3 Agent | | Nova Compute | | Keystone Glance | | Metadata Agent | | L2 Agent | | Nova API | | Cinder Volume | | | | Neutron Server | | Heat API | | | | Metadata Agent | | Heat Engine | | | | Cinder API | | | | | +-----------------------+ +-----------------------+ +-----------------------+ |
[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 | 1718217eee4b4f2ea143d65122864fe0 | | domain_id | default | | enabled | True | | id | f04581c155934b7d9bda9689bd5ef779 | | name | heat | | options | {} | | 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 | +-------------+----------------------------------+ | description | None | | domain_id | None | | id | 87834083807a4b2ca66e0fad9cb580d6 | | name | heat_stack_owner | | options | {} | +-------------+----------------------------------+root@dlp ~(keystone)# openstack role create heat_stack_user +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | None | | domain_id | None | | id | 4af6360cc5e9401facb11c6be1dc195d | | name | heat_stack_user | | options | {} | +-------------+----------------------------------+ # 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 | +-------------+----------------------------------+ | description | Openstack Orchestration | | enabled | True | | id | f8c436991ce04753865794a11fb763e4 | | name | heat | | type | orchestration | +-------------+----------------------------------+root@dlp ~(keystone)# openstack service create --name heat-cfn --description "Openstack Orchestration" cloudformation +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | Openstack Orchestration | | enabled | True | | id | 536f709823024ea78a86f51a8b78cd12 | | name | heat-cfn | | type | cloudformation | +-------------+----------------------------------+ # define Heat API Host root@dlp ~(keystone)# heat_api=10.0.0.50
# 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 | a0a2a197a75d4bcf87a966ad6d873a85 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | f8c436991ce04753865794a11fb763e4 | | service_name | heat | | service_type | orchestration | | url | http://10.0.0.50: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 | b2bb159f25544c298d1b25715d956c55 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | f8c436991ce04753865794a11fb763e4 | | service_name | heat | | service_type | orchestration | | url | http://10.0.0.50: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 | 7d15f39a098f4d1c8e6338a8ab153fa8 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | f8c436991ce04753865794a11fb763e4 | | service_name | heat | | service_type | orchestration | | url | http://10.0.0.50: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 | 1b8ad34e2365400d936dff102ac85b2b | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 536f709823024ea78a86f51a8b78cd12 | | service_name | heat-cfn | | service_type | cloudformation | | url | http://10.0.0.50: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 | 8c04ab15e8d6463ba7fded5b15566a84 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 536f709823024ea78a86f51a8b78cd12 | | service_name | heat-cfn | | service_type | cloudformation | | url | http://10.0.0.50: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 | a3431f58ef2c4122b691c6aa7bae0121 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 536f709823024ea78a86f51a8b78cd12 | | service_name | heat-cfn | | service_type | cloudformation | | url | http://10.0.0.50: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 | 62b82192485443b1ab8c0054c857460f | | name | heat | | options | {} | | tags | [] | +-------------+----------------------------------+ # create [heat_domain_admin] user root@dlp ~(keystone)# openstack user create --domain heat --password servicepassword heat_domain_admin +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | domain_id | 62b82192485443b1ab8c0054c857460f | | enabled | True | | id | 512e86bea4bd493eaa3cca9b0c040a9e | | name | heat_domain_admin | | options | {} | | 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 103 Server version: 10.5.11-MariaDB-1 Debian 11 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)]> flush privileges; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye |
Sponsored Link |