OpenStack Dalmatian : Configure Heat (Network Node)2024/10/14 |
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] | Install Heat services on Network Node. |
root@network:~# apt -y install heat-api heat-api-cfn heat-engine python3-heatclient python3-vitrageclient python3-zunclient
|
[2] | Configure Heat. |
root@network:~# mv /etc/heat/heat.conf /etc/heat/heat.conf.org
root@network:~#
vi /etc/heat/heat.conf # create new [DEFAULT] heat_stack_user_role = heat_stack_user # Heat domain name stack_user_domain_name = heat # Heat domain admin username stack_domain_admin = heat_domain_admin # Heat domain admin's password stack_domain_admin_password = servicepassword # RabbitMQ connection info transport_url = rabbit://openstack:password@dlp.srv.world:5672 # MariaDB connection info [database] connection = mysql+pymysql://heat:password@dlp.srv.world:3306/heat # Keystone connection info [clients_keystone] auth_uri = https://dlp.srv.world:5000 [heat_api] bind_host = 10.0.0.50 bind_port = 8004 [heat_api_cfn] bind_host = 10.0.0.50 bind_port = 8000 # Keystone auth info [keystone_authtoken] www_authenticate_uri = https://dlp.srv.world:5000 auth_url = https://dlp.srv.world:5000 memcached_servers = dlp.srv.world:11211 auth_type = password project_domain_name = Default user_domain_name = Default project_name = service username = heat password = servicepassword service_token_roles = service service_token_roles_required = true # if using self-signed certs on Apache2 Keystone, turn to [true] insecure = false [trustee] auth_url = https://dlp.srv.world:5000 auth_type = password user_domain_name = Default username = heat password = servicepassword [oslo_policy] enforce_new_defaults = true chmod 640 /etc/heat/heat.conf root@network:~# chgrp heat /etc/heat/heat.conf |
[3] | Add Data into Database and start Heat services. |
root@network:~# su -s /bin/bash heat -c "heat-manage db_sync" root@network:~# systemctl restart heat-api heat-api-cfn heat-engine |
Sponsored Link |