CentOS Stream 8
Sponsored Link

OpenStack Xena : Configure Nova #12021/11/22

 
Install and Configure OpenStack Compute Service (Nova).
This example is based on the environment like follows.
        eth0|10.0.0.30 
+-----------+-----------+
|    [ Control Node ]   |
|                       |
|  MariaDB    RabbitMQ  |
|  Memcached  httpd     |
|  Keystone   Glance    |
+-----------------------+

[1] Add users and others for Nova in Keystone.
# create [nova] user in [service] project

[root@dlp ~(keystone)]#
openstack user create --domain default --project service --password servicepassword nova

+---------------------+----------------------------------+
| Field               | Value                            |
+---------------------+----------------------------------+
| default_project_id  | 7e53ef14eb894f379ea1929f5defc949 |
| domain_id           | default                          |
| enabled             | True                             |
| id                  | fc1c665468b047b2b23426401c8ee604 |
| name                | nova                             |
| options             | {}                               |
| password_expires_at | None                             |
+---------------------+----------------------------------+

# add [nova] user in [admin] role

[root@dlp ~(keystone)]#
openstack role add --project service --user nova admin
# create [placement] user in [service] project

[root@dlp ~(keystone)]#
openstack user create --domain default --project service --password servicepassword placement

+---------------------+----------------------------------+
| Field               | Value                            |
+---------------------+----------------------------------+
| default_project_id  | 7e53ef14eb894f379ea1929f5defc949 |
| domain_id           | default                          |
| enabled             | True                             |
| id                  | 2a4ab705034f47c5bfb2c762f3a696d3 |
| name                | placement                        |
| options             | {}                               |
| password_expires_at | None                             |
+---------------------+----------------------------------+

# add [placement] user in [admin] role

[root@dlp ~(keystone)]#
openstack role add --project service --user placement admin
# create service entry for [nova]

[root@dlp ~(keystone)]#
openstack service create --name nova --description "OpenStack Compute service" compute

+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | OpenStack Compute service        |
| enabled     | True                             |
| id          | 95ad11998c2f433d98a50a4d69e0425f |
| name        | nova                             |
| type        | compute                          |
+-------------+----------------------------------+

# create service entry for [placement]

[root@dlp ~(keystone)]#
openstack service create --name placement --description "OpenStack Compute Placement service" placement

+-------------+-------------------------------------+
| Field       | Value                               |
+-------------+-------------------------------------+
| description | OpenStack Compute Placement service |
| enabled     | True                                |
| id          | c11c0ac9d09e40f3849e59bb9b7e6349    |
| name        | placement                           |
| type        | placement                           |
+-------------+-------------------------------------+

# define Nova API Host

[root@dlp ~(keystone)]#
export controller=10.0.0.30
# create endpoint for [nova] (public)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne compute public http://$controller:8774/v2.1/%\(tenant_id\)s

+--------------+------------------------------------------+
| Field        | Value                                    |
+--------------+------------------------------------------+
| enabled      | True                                     |
| id           | 13df3ae555f54c9c8baf8ffccbbe3ed9         |
| interface    | public                                   |
| region       | RegionOne                                |
| region_id    | RegionOne                                |
| service_id   | 95ad11998c2f433d98a50a4d69e0425f         |
| service_name | nova                                     |
| service_type | compute                                  |
| url          | http://10.0.0.30:8774/v2.1/%(tenant_id)s |
+--------------+------------------------------------------+

# create endpoint for [nova] (internal)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne compute internal http://$controller:8774/v2.1/%\(tenant_id\)s

+--------------+------------------------------------------+
| Field        | Value                                    |
+--------------+------------------------------------------+
| enabled      | True                                     |
| id           | 9751e7ec17ef44c1ba09d584fb9695d9         |
| interface    | internal                                 |
| region       | RegionOne                                |
| region_id    | RegionOne                                |
| service_id   | 95ad11998c2f433d98a50a4d69e0425f         |
| service_name | nova                                     |
| service_type | compute                                  |
| url          | http://10.0.0.30:8774/v2.1/%(tenant_id)s |
+--------------+------------------------------------------+

# create endpoint for [nova] (admin)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne compute admin http://$controller:8774/v2.1/%\(tenant_id\)s

+--------------+------------------------------------------+
| Field        | Value                                    |
+--------------+------------------------------------------+
| enabled      | True                                     |
| id           | 408a753096b443189d744f9a859092fe         |
| interface    | admin                                    |
| region       | RegionOne                                |
| region_id    | RegionOne                                |
| service_id   | 95ad11998c2f433d98a50a4d69e0425f         |
| service_name | nova                                     |
| service_type | compute                                  |
| url          | http://10.0.0.30:8774/v2.1/%(tenant_id)s |
+--------------+------------------------------------------+

# create endpoint for [placement] (public)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne placement public http://$controller:8778

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | d238e62a891d4cc3897f1a7975c42654 |
| interface    | public                           |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | c11c0ac9d09e40f3849e59bb9b7e6349 |
| service_name | placement                        |
| service_type | placement                        |
| url          | http://10.0.0.30:8778            |
+--------------+----------------------------------+

# create endpoint for [placement] (internal)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne placement internal http://$controller:8778

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | a18fc478cf4f4dbb8506424b407fa9a1 |
| interface    | internal                         |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | c11c0ac9d09e40f3849e59bb9b7e6349 |
| service_name | placement                        |
| service_type | placement                        |
| url          | http://10.0.0.30:8778            |
+--------------+----------------------------------+

# create endpoint for [placement] (admin)

[root@dlp ~(keystone)]#
openstack endpoint create --region RegionOne placement admin http://$controller:8778

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | e3f54c4d49cb452da6b1240693ac18bc |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | c11c0ac9d09e40f3849e59bb9b7e6349 |
| service_name | placement                        |
| service_type | placement                        |
| url          | http://10.0.0.30:8778            |
+--------------+----------------------------------+
[2] Add a User and Database on MariaDB for Nova.
[root@dlp ~(keystone)]#
mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 16
Server version: 10.5.9-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 nova; 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all privileges on nova.* to nova@'localhost' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on nova.* to nova@'%' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> create database nova_api; 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all privileges on nova_api.* to nova@'localhost' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on nova_api.* to nova@'%' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> create database nova_cell0; 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all privileges on nova_cell0.* to nova@'localhost' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on nova_cell0.* to nova@'%' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> create database placement; 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all privileges on placement.* to placement@'localhost' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on placement.* to placement@'%' 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
Matched Content