OpenStack Antelope : Heat 設定 (Control ノード)2023/04/19 |
OpenStack Orchestration Service(Heat)をインストールします。
当例では以下のような環境を例に Orchestration サービスをインストールします。
------------+--------------------------+--------------------------+------------ | | | 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] | Control ノードの Keystone に Heat 用のユーザー等々を登録しておきます。 |
# [service] プロジェクト所属で [heat] ユーザーを作成 [root@dlp ~(keystone)]# openstack user create --domain default --project service --password servicepassword heat +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | 6d680c2574034967ab496a59d1319a65 | | domain_id | default | | enabled | True | | id | ec10791d3f7e439b80341b8fa05819bc | | name | heat | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # [heat] ユーザーを [admin] ロール に加える [root@dlp ~(keystone)]# openstack role add --project service --user heat admin
# [heat] 用ロール作成 [root@dlp ~(keystone)]# openstack role create heat_stack_owner +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | None | | domain_id | None | | id | 837745ef52fe416f94fc6a9fa27632f3 | | name | heat_stack_owner | | options | {} | +-------------+----------------------------------+[root@dlp ~(keystone)]# openstack role create heat_stack_user +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | None | | domain_id | None | | id | de9ddd7ad2334824b1ca5dd84a895740 | | name | heat_stack_user | | options | {} | +-------------+----------------------------------+ # [admin] ユーザーを [heat_stack_owner] ロール に加える [root@dlp ~(keystone)]# openstack role add --project admin --user admin heat_stack_owner
# [heat] 用サービスエントリ作成 [root@dlp ~(keystone)]# openstack service create --name heat --description "Openstack Orchestration" orchestration +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | Openstack Orchestration | | enabled | True | | id | 30ebc4e3b4ea42a08d4036edc7973e5d | | 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 | d0cb6c7f4f81442daad03acfd2d64780 | | name | heat-cfn | | type | cloudformation | +-------------+----------------------------------+ # Heat API ノードを定義 [root@dlp ~(keystone)]# heat_api=network.srv.world
# [orchestration] 用エンドポイント作成 (public) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne orchestration public https://$heat_api:8004/v1/%\(tenant_id\)s +--------------+-------------------------------------------------+ | Field | Value | +--------------+-------------------------------------------------+ | enabled | True | | id | 8bd3701fe48e4af6a53c203214544074 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 30ebc4e3b4ea42a08d4036edc7973e5d | | service_name | heat | | service_type | orchestration | | url | https://network.srv.world:8004/v1/%(tenant_id)s | +--------------+-------------------------------------------------+ # [orchestration] 用エンドポイント作成 (internal) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne orchestration internal https://$heat_api:8004/v1/%\(tenant_id\)s +--------------+-------------------------------------------------+ | Field | Value | +--------------+-------------------------------------------------+ | enabled | True | | id | 3e26f38d98574f2ca3fb848039f46211 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 30ebc4e3b4ea42a08d4036edc7973e5d | | service_name | heat | | service_type | orchestration | | url | https://network.srv.world:8004/v1/%(tenant_id)s | +--------------+-------------------------------------------------+ # [orchestration] 用エンドポイント作成 (admin) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne orchestration admin https://$heat_api:8004/v1/%\(tenant_id\)s +--------------+-------------------------------------------------+ | Field | Value | +--------------+-------------------------------------------------+ | enabled | True | | id | 5584a333d0984f91975884b55a2781b9 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 30ebc4e3b4ea42a08d4036edc7973e5d | | service_name | heat | | service_type | orchestration | | url | https://network.srv.world:8004/v1/%(tenant_id)s | +--------------+-------------------------------------------------+ # [cloudformation] 用エンドポイント作成 (public) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne cloudformation public https://$heat_api:8000/v1 +--------------+-----------------------------------+ | Field | Value | +--------------+-----------------------------------+ | enabled | True | | id | e6418c058ed84da1bfc8c5e0869cc510 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | d0cb6c7f4f81442daad03acfd2d64780 | | service_name | heat-cfn | | service_type | cloudformation | | url | https://network.srv.world:8000/v1 | +--------------+-----------------------------------+ # [cloudformation] 用エンドポイント作成 (internal) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne cloudformation internal https://$heat_api:8000/v1 +--------------+-----------------------------------+ | Field | Value | +--------------+-----------------------------------+ | enabled | True | | id | 0051c440a2ce46cd9c578b241e8d4f9e | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | d0cb6c7f4f81442daad03acfd2d64780 | | service_name | heat-cfn | | service_type | cloudformation | | url | https://network.srv.world:8000/v1 | +--------------+-----------------------------------+ # [cloudformation] 用エンドポイント作成 (admin) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne cloudformation admin https://$heat_api:8000/v1 +--------------+-----------------------------------+ | Field | Value | +--------------+-----------------------------------+ | enabled | True | | id | f5b8f4dfa8c242c0aeadd03988788172 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | d0cb6c7f4f81442daad03acfd2d64780 | | service_name | heat-cfn | | service_type | cloudformation | | url | https://network.srv.world:8000/v1 | +--------------+-----------------------------------+ # Heat ドメイン作成 [root@dlp ~(keystone)]# openstack domain create --description "Stack projects and users" heat +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | Stack projects and users | | enabled | True | | id | 708079d51c674cafbbc3b5e04796b926 | | name | heat | | options | {} | | tags | [] | +-------------+----------------------------------+ # [heat_domain_admin] ユーザー作成 [root@dlp ~(keystone)]# openstack user create --domain heat --password servicepassword heat_domain_admin +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | domain_id | 708079d51c674cafbbc3b5e04796b926 | | enabled | True | | id | 03c9254b67d94c24bc507d7ff1154335 | | name | heat_domain_admin | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # [heat_domain_admin] ユーザーを [admin] ロール に加える [root@dlp ~(keystone)]# openstack role add --domain heat --user heat_domain_admin admin
|
[2] | Heat 用のユーザーとデータベースを MariaDB に作成しておきます。 |
[root@dlp ~(keystone)]# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 77 Server version: 10.5.16-MariaDB 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)]> flush privileges; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye |
Sponsored Link |