Taillieu.Info

More Than a Hobby..

Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in /customers/3/2/5/taillieu.info/httpd.www/templates/taillieuinfo_joomla3_rev1/functions.php on line 194

OpenStack - Centos Lab2 : Glance – Kilo

Centos Lab2 : Glance – Kilo

 

In this lab, you will install the OpenStack Image Service (aka Glance). This requires a similar set of steps as the Keystone installation, but we won’t have to re-install the database or message queue services, and we’ll be leveraging the Keystone service we installed in the previous lab.

OpenStack Image Service (Glance) provides discovery, registration, and delivery services for disk and server images. It offers a REST API that enables you to query Virtual Machine Images and their metadata. Images can be stored in a variety of locations from simple file systems to object-storage systems like Swift (OpenStack Object Storage).

As you install Glance observe the commands you are running during this process. Do you see any similarity between installing Keystone and this service?

Glancehttp://onecloudclass.com/wp-content/uploads/2015/03/Glance-100x75.jpg 100w, http://onecloudclass.com/wp-content/uploads/2015/03/Glance.jpg 720w" sizes="(max-width: 720px) 100vw, 720px" style="box-sizing: border-box; max-width: 100%; height: auto; vertical-align: middle; display: block; margin: 0px auto 1.313em;">

Image Service Installation

Step 1: Log into your AIO node from the lab-gateway machine

If you have logged out, SSH into your AIO node:

Copy
ssh centos@aio151

If asked, the user password (as with the sudo password) would be centos, then become root via the sudo password:

Copy
sudo su -

Then we’ll source the OpenStack administrative user credentials. As you’ll recall from the previous lab, this sets a set of environment variables (OS_USERNAME, etc.) that are then picked up by the command line tools (like the keystone and glance tools we’ll be using in this lab) so that we don’t have to pass the equivalent –os-username command line variables for each command we run:

Copy
source ~/openrc.sh

So now we’re ready, and much like with Keystone, we’ll install both the glance components, and the python CLI tools:

Copy
yum install openstack-glance python-glanceclient -y

Create Database for Image Service

Step 2: Set up the database:

Glance stores information about images in a database, specifically the image location (file, object, etc. info), any uploaded metadata or tags associated with the image (e.g. specific parameters for the virtualization backend such as disk driver type, whether the image is publicly available, etc.), and a tenant association (i.e. who owns this image). We will create the glance database by logging into MariaDB as the root user with our pre-defined super secret password pass, and will pass the CREATE command along with the database user credentials creation commands. In this case we’re ensuring that either a local access request to localhost or to ‘%’ which is database shorthand for ‘any value’ or in our particular case, ‘any host’ can access the glance database. In reality we’ve configured our database to only allow access from the localhost address, or from the aio address, effectively limiting access to the local machine.

Copy
mysql -uroot -ppass
CREATE DATABASE glance;
GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' IDENTIFIED BY 'pass';
GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' IDENTIFIED BY 'pass';
exit

We will eventually have to migrate the database to the current state, but for now we’ll configure the User/Tenants in Keystone, and then once we’ve updated the glance configuration files, we’ll be able to do the migration.

Creating the Glance Service User

Since we don’t have to do a migration, we can move on to configuring the rest of glance, the first step will be to create a service account in Keystone to support programatic interaction between Glance and other OpenStack services.

Step 3: We will continue our super-secure model of using pass as the glance user password and will use another generic email address for the glance user:

Copy
openstack user create glance --password pass --email Dit e-mailadres wordt beveiligd tegen spambots. JavaScript dient ingeschakeld te zijn om het te bekijken.

Example output:

+----------+----------------------------------+
| Property |              Value               |
+----------+----------------------------------+
|  email   |      Dit e-mailadres wordt beveiligd tegen spambots. JavaScript dient ingeschakeld te zijn om het te bekijken.      |
| enabled  |               True               |
|    id    | b4d60c444360421ea4d4f4a8f958203e |
|   name   |              glance              |
| username |              glance              |
+----------+----------------------------------+

We will provide the glance user with the same admin role rights as our general admin user, but associated with the service tenant (this being the default expected tenant for inter-service RESTful communication in the OpenStack environment):

Copy
openstack role add --project service --user glance admin

Configure Image Service

Unlike Keystone, Glance is actually made up of two services, the glance-api service, which is what end-users, CLI tools, APIs communicate with and which manages talking to other services, like writing files to disk, object sotre, etc., and the glance-registry service, which manages the communications with the database.

Actually, this is the way it originally was. We’re now using the v2 api, and in the v2 api model, the database communication is handled by the API service directly. The registry service is there for backwards compatability to the glance v1 api, and there has been some interest in using it for other purposes (such as going back to a segregated engine for database communications).

Regardless, we will modify the .conf files for both services (glance-api.conf and glance-registry.conf respectively) to define their inter-process communications and database access credentials. We’ll also define the disk configuration for storing images loaded into Glance.

Step 4: Edit /etc/glance/glance-api.conf

Copy
vi /etc/glance/glance-api.conf

First we will configure our RabbitMQ connection. We’re doing this for internal communication between the API process and it’s worker processes. There are components of the API service dedicated to managing data read/write processes that may be long lived, allowing for a more responsive API service.
Search rabbit_host to find and change the rabbit host details as below (in vi, remember ‘/’ will start a search and <enter> stops the search. Note that this belongs in the [DEFAULT] section, which is where you should find the example rabbit_host values:

Copy
rpc_backend = rabbit
rabbit_host = aio151
rabbit_userid = guest
rabbit_password = pass

Step 5: Configure the location of the database that was created in Step 2. Search for the [database] section and add the database connection information as follows:

Copy
connection = mysql://glance:pass@aio151/glance

Glance needs to be able to talk to Keystone to validate user requests, so we will add the configuration for validating identity to the glance-api.conf file. Find the [keystone_authtoken] section and add the following immediately after the [keystone_authtoken] section header:

Copy
auth_uri = http://aio151:5000/v2.0
identity_uri = http://aio151:35357
admin_tenant_name = service
admin_user = glance
admin_password = pass

Next we configure the paste engine (this is actually the Python language framework that Glance is written in) to use the information in the keystone section. Find the [paste_deploy] section and add the following key under the [paste_deploy] header:

Copy
flavor = keystone

Press <esc> key and type :wq<enter> to save the file.

Note:This ‘flavor’ is the authentication flavor. In other words, glance will use keystone for authentication. There is currently no alternative authentication flavor available, but as with many things OpenStack, the possibility for future alternatives is there.

Step 6: Now edit /etc/glance/glance-registry.conf in the same way:

Copy
vi /etc/glance/glance-registry.conf

Follow the instructions in Step 4 and Step 5 to update the [database], [DEFAULT], [paste_deploy] and [keystone_authtoken] sections to finish this task.

Define services and service endpoints

Register the glance with the keystone so that other OpenStack services can locate it. As stated earlier, the registry is really enabled specifically for supporting V1 API requests, and while we don’t expect much of that (or rather any), this is still considered “standard” practice. It may be that a future version of OpenStack no longer supports this, but for now we create the same effective configuration twice.

Normally we might also tweak the settings (in the api specificaly, as it was always the service that dealt with managing the actual images) for location of the image storage, such as configuring access to a SWIFT object store. But we’re going to use the default, which is already hard coded into the application. The images will be stored on disk in the /var/lib/glance/images directory, and after we load an image into glance, we can have a look and see that an image is in fact installed in that location.

Step 7: Register the service and create the endpoint.

Service endpoints let OpenStack services find each other, whether that be Nova looking for an image that was requested for a deployment, or a user uploading or downloading an image directly. The service endpoint is configured in Keystone, and much like Keystone’s own endpoint, there is a “standard” service that needs to exist called “glance” and with the type “image”. We’ll once again leverage the “keystone service-create” command to configure the service:

Copy
openstack service create --name glance --description "OpenStack Image service" image

Example output:

+-------------+----------------------------------+
|   Property  |              Value               |
+-------------+----------------------------------+
| description |       OpenStack Image Service    |
|   enabled   |               True               |
|      id     | 1bc56754d0e34f11b2c959464a795a63 |
|     name    |              glance              |
|     type    |              image               |
+-------------+----------------------------------+

As with Keystone, we’ll create the service, and use the embedded lookup to get the correct service ID (we could have also copied it from the output of the previous command):

Copy
openstack endpoint create --publicurl http://aio151:9292 --internalurl http://aio151:9292 --adminurl http://aio151:9292 --region RegionOne image

Example output:

+-------------+----------------------------------+
|   Property  |              Value               |
+-------------+----------------------------------+
|   adminurl  |        http://aio151:9292        |
|      id     | b8df5f714a6b4bd1a36081fc75c5b949 |
| internalurl |        http://aio151:9292        |
|  publicurl  |        http://aio151:9292        |
|    region   |            regionOne             |
|  service_id | 1bc56754d0e34f11b2c959464a795a63 |
|service_name | glance                           |
|service_type | image                            |  
+-------------+----------------------------------+

Step 8: Create the database tables for the Image Service

Now we’ll finalize the database internal structure before restarting the services. We’ll do this by passing the “db_sync” option to the glance-manage CLI tool. This populates the tables in the “glance” database that you created earlier using the connection information in the glance-api.conf file. Much like with Keystone, we’ll be running this command as the glance user, validating further our ability to talk to the database as the glance user:

Copy
su -s /bin/sh -c "glance-manage db_sync" glance

Step 9: Enable and Start the glance service(s)

Again, as with Keystone, we’ll now enable the api and registry services, and then start them for the first time. If for some reason they had already started (which would be unusual), you could instead use “restart” in the second command.

Copy
systemctl enable openstack-glance-api.service openstack-glance-registry.service
systemctl start openstack-glance-api.service openstack-glance-registry.service
systemctl status openstack-glance-api.service openstack-glance-registry.service

Importing Images

Ok, now that Glance is running, let’s get it ready for use by other services. Specifially that means uploading an image into the glance repository. You may want to have a look at the glance image directory pre and post importing the image (or ‘image-create’ing an image). ls /var/lib/glance/images shoudl be empty to begin with, and then it shoudl have a directory with a name that matches the ‘id’ that will be returned from the import command.

First, let’s get an image downloaded locally to import into Glance (this can now be done directly from a remote http(s): link too, but that is left as an exercise for the reader).
Step 10: Download the image into a dedicated directory using wget or curl:

Using wget:

First we’ll install wget:

Copy
yum -y install wget
Copy

Step 11: Import the image into glance:

Copy
glance image-create --name "CirrOS 0.3.2" --disk-format qcow2 --container-format bare --is-public true --file cirros-0.3.2-x86_64-disk.img
Note: If you get an error to provide OS_USERNAME, Run the below command
source ~/openrc.sh
You should see “active” as the image “status” in the returned output from the command.

Example output:

+------------------+--------------------------------------+
| Property         | Value                                |
+------------------+--------------------------------------+
| checksum         | 64d7c1cd2b6f60c92c14662941cb7913     |
| container_format | bare                                 |
| created_at       | 2015-05-07T03:31:42                  |
| deleted          | False                                |
| deleted_at       | None                                 |
| disk_format      | qcow2                                |
| id               | 66b3503e-57ee-46a6-ae6b-0f0b7e7eb693 |
| is_public        | True                                 |
| min_disk         | 0                                    |
| min_ram          | 0                                    |
| name             | CirrOS 0.3.2                         |
| owner            | 79af9405b769430d960c6ef47a30122e     |
| protected        | False                                |
| size             | 13167616                             |
| status           | active                               |
| updated_at       | 2015-05-07T03:31:42                  |
| virtual_size     | None                                 |
+------------------+--------------------------------------+

You can also check the image status by listing the currently available (to your tenant) list of images:

Copy
glance image-list

Where you might see something like:

+--------------------------------------+--------------+-------------+------------------+----------+--------+
| ID                                   | Name         | Disk Format | Container Format | Size     | Status |
+--------------------------------------+--------------+-------------+------------------+----------+--------+
| 66b3503e-57ee-46a6-ae6b-0f0b7e7eb693 | CirrOS 0.3.2 | qcow2       | bare             | 13167616 | active |
+--------------------------------------+--------------+-------------+------------------+----------+--------+
Alternatively it is possible to download from online repositories directly into Glance, or even to point to an online location and store nothing in glance (though this assumes that the compute nodes have access to the same online repositories).

In this case, we’ll grab another copy directly from the web location:

Copy
glance image-create --name "cirros_0.3.2_direct" --disk-format qcow2 --container-format bare --is-public true --copy-from http://10.1.1.91/images/cirros-0.3.2-x86_64-disk.img --property openstack=cool

The output from the command lists back the currently known meta-data about this image, including elements like the type of container (generally “bare” as in there is no container for the disk), the type of disk (commonly qcow2, a “copy on write” format or raw, a copy of all of the bits that existed on the original volume), the public/private flag, the owner, the size, etc. No minimum amount of disk space or memory was defined (additional common meta-data), but we have provided a little bit of “other” metadata, specifically stating that the key “openstack” has value “cool”. Compare this to the previous image upload where no additional parameters were supplied.

Example output:

+----------------------+--------------------------------------+
| Property             | Value                                |
+----------------------+--------------------------------------+
| Property 'openstack' | cool                                 |
| checksum             | None                                 |
| container_format     | bare                                 |
| created_at           | 2015-05-07T03:43:36                  |
| deleted              | False                                |
| deleted_at           | None                                 |
| disk_format          | qcow2                                |
| id                   | 738aa06e-786d-402c-a0a1-cbe46a6c4b69 |
| is_public            | True                                 |
| min_disk             | 0                                    |
| min_ram              | 0                                    |
| name                 | cirros_0.3.2_direct                  |
| owner                | 79af9405b769430d960c6ef47a30122e     |
| protected            | False                                |
| size                 | 0                                    |
| status               | active                               |
| updated_at           | 2015-05-07T03:43:36                  |
| virtual_size         | None                                 |
+----------------------+--------------------------------------+

Now if you run the following command, you should see two versions of the cirros image:

Copy
glance image-list

Now that we have our image installed, and Glance is willing to give us information about it, we can clean up our local disk and return to the home directory:

Copy
cd
rm -rf images
You now have configured Glance and verified its functionality when you successfully completed an image upload.

If time permits, review the lab to get a reminder of what you have accomplished.

In the next Lab, you’ll continue to build core functionality of your cloud system with one of the original OpenStack projects: Nova. Do you recall what service nova provides in OpenStack?