Ubuntu 22.04
Sponsored Link

OpenStack Antelope : Configure Glance2023/03/23

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

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

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

+---------------------+----------------------------------+
| Field               | Value                            |
+---------------------+----------------------------------+
| default_project_id  | d3dd87fb1a034f7883539a6a4f83781f |
| domain_id           | default                          |
| enabled             | True                             |
| id                  | b0eb7a7d5077484eb43ac73eff8f2215 |
| name                | glance                           |
| options             | {}                               |
| password_expires_at | None                             |
+---------------------+----------------------------------+

# add [glance] user in [admin] role

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

root@dlp ~(keystone)#
openstack service create --name glance --description "OpenStack Image service" image

+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | OpenStack Image service          |
| enabled     | True                             |
| id          | fc15f0d25d2a4c71976682d20a9b2d9c |
| name        | glance                           |
| type        | image                            |
+-------------+----------------------------------+

# define Glance API Host

root@dlp ~(keystone)#
export controller=dlp.srv.world
# create endpoint for [glance] (public)

root@dlp ~(keystone)#
openstack endpoint create --region RegionOne image public https://$controller:9292

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 5e376b2bf0b64178b545a16f1f4fc80f |
| interface    | public                           |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | fc15f0d25d2a4c71976682d20a9b2d9c |
| service_name | glance                           |
| service_type | image                            |
| url          | https://dlp.srv.world:9292       |
+--------------+----------------------------------+

# create endpoint for [glance] (internal)

root@dlp ~(keystone)#
openstack endpoint create --region RegionOne image internal https://$controller:9292

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | d270759a042c4e109408137dc6a630b5 |
| interface    | internal                         |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | fc15f0d25d2a4c71976682d20a9b2d9c |
| service_name | glance                           |
| service_type | image                            |
| url          | https://dlp.srv.world:9292       |
+--------------+----------------------------------+

# create endpoint for [glance] (admin)

root@dlp ~(keystone)#
openstack endpoint create --region RegionOne image admin https://$controller:9292

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 451d8d5a741d4ec589e4b52476a012ec |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | fc15f0d25d2a4c71976682d20a9b2d9c |
| service_name | glance                           |
| service_type | image                            |
| url          | https://dlp.srv.world:9292       |
+--------------+----------------------------------+
[2] Add a User and Database on MariaDB for Glance.
root@dlp ~(keystone)#
mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 46
Server version: 10.6.12-MariaDB-0ubuntu0.22.04.1 Ubuntu 22.04

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 glance; 
Query OK, 1 row affected (0.00 sec)

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

MariaDB [(none)]> grant all privileges on glance.* to glance@'%' 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
[3] Install Glance.
root@dlp ~(keystone)#
apt -y install glance
[4] Configure Glance.
root@dlp ~(keystone)#
mv /etc/glance/glance-api.conf /etc/glance/glance-api.conf.org

root@dlp ~(keystone)#
vi /etc/glance/glance-api.conf
# create new

[DEFAULT]
bind_host = 127.0.0.1
# RabbitMQ connection info
transport_url = rabbit://openstack:password@dlp.srv.world

[glance_store]
stores = file,http
default_store = file
filesystem_store_datadir = /var/lib/glance/images/

[database]
# MariaDB connection info
connection = mysql+pymysql://glance:password@dlp.srv.world/glance

# 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 = glance
password = servicepassword
# if using self-signed certs on Apache2 Keystone, turn to [true]
insecure = false

[paste_deploy]
flavor = keystone

[oslo_policy]
enforce_new_defaults = true

root@dlp ~(keystone)#
chmod 640 /etc/glance/glance-api.conf

root@dlp ~(keystone)#
chown root:glance /etc/glance/glance-api.conf
root@dlp ~(keystone)#
su -s /bin/bash glance -c "glance-manage db_sync"

root@dlp ~(keystone)#
systemctl restart glance-api

root@dlp ~(keystone)#
systemctl enable glance-api
[5] Configure Nginx for proxy settings.
For SSL/TLS certificate, it's OK to use the same one with Apache2 Keystone site.
root@dlp ~(keystone)#
vi /etc/nginx/nginx.conf
# add to the end

stream {
    upstream glance-api {
        server 127.0.0.1:9292;
    }
    server {
        listen 10.0.0.30:9292 ssl;
        proxy_pass glance-api;
    }
    ssl_certificate "/etc/letsencrypt/live/dlp.srv.world/fullchain.pem";
    ssl_certificate_key "/etc/letsencrypt/live/dlp.srv.world/privkey.pem";
}

root@dlp:~#
systemctl restart nginx
Matched Content