CentOS 7
Sponsored Link

OpenStack Newton : イメージを登録する2016/10/22

 
Glance に イメージの登録をします。
[1] Glance へのイメージの登録用に、例として、CentOS 7 のイメージを作成します。
# ディスクイメージを格納するディレクトリを作成しておく

[root@dlp ~(keystone)]#
mkdir -p /var/kvm/images
# ディスクイメージを作成しておく

[root@dlp ~(keystone)]#
qemu-img create -f qcow2 /var/kvm/images/centos7.img 10G
# インストール

[root@dlp ~(keystone)]#
virt-install \
--name centos7 \
--ram 2048 \
--disk path=/var/kvm/images/centos7.img,format=qcow2 \
--vcpus 2 \
--os-type linux \
--os-variant rhel7 \
--graphics none \
--console pty,target_type=serial \
--location 'http://ftp.iij.ad.jp/pub/linux/centos/7/os/x86_64/' \
--extra-args 'console=ttyS0,115200n8 serial'
Starting install...    
# インストールが開始される
[2]
インストール終了後、仮想マシン内の設定を以下のように変更してシャットダウンしてください。
・/etc/sysconfig/network-scripts/ifcfg-eth0 内の「HWADDR」行と「UUID」行はコメント、または削除
・/etc/sysconfig/network-scripts/ifcfg-eth0 内の「BOOTPROTO」は「dhcp」
[3] 作成したイメージディスクを Glance へ登録します。
[root@dlp ~(keystone)]#
glance image-create --name "CentOS7" --file /var/kvm/images/centos7.img --disk-format qcow2 --container-format bare --visibility public

+------------------+--------------------------------------+
| Property         | Value                                |
+------------------+--------------------------------------+
| checksum         | 1fc0c3cc0f3e581fd046e7a64fe974ff     |
| container_format | bare                                 |
| created_at       | 2016-10-21T17:21:44Z                 |
| disk_format      | qcow2                                |
| id               | 6afd28b3-6056-4c30-bd47-93fb26cc5062 |
| min_disk         | 0                                    |
| min_ram          | 0                                    |
| name             | CentOS7                              |
| owner            | 150e205a8791426e8028a94699fb8848     |
| protected        | False                                |
| size             | 1101660160                           |
| status           | active                               |
| tags             | []                                   |
| updated_at       | 2016-10-21T17:21:49Z                 |
| virtual_size     | None                                 |
| visibility       | public                               |
+------------------+--------------------------------------+

[root@dlp ~(keystone)]#
glance image-list

+--------------------------------------+---------+
| ID                                   | Name    |
+--------------------------------------+---------+
| 6afd28b3-6056-4c30-bd47-93fb26cc5062 | CentOS7 |
+--------------------------------------+---------+
[4] なお、ネット上で配布されているディスクイメージを使う場合は、以下のようにダウンロードしたものを登録すればOKです。
[root@dlp ~(keystone)]#
wget http://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-amd64-disk1.img -P /var/kvm/images
[root@dlp ~(keystone)]#
glance image-create --name "Ubuntu1604" --file /var/kvm/images/ubuntu-16.04-server-cloudimg-amd64-disk1.img --disk-format qcow2 --container-format bare --visibility public

+------------------+--------------------------------------+
| Property         | Value                                |
+------------------+--------------------------------------+
| checksum         | 3dc12c0950321bb114279959ffb239d8     |
| container_format | bare                                 |
| created_at       | 2016-10-21T17:23:57Z                 |
| disk_format      | qcow2                                |
| id               | 1f9224fa-63ca-475a-b595-3ad87dd900ad |
| min_disk         | 0                                    |
| min_ram          | 0                                    |
| name             | Ubuntu1604                           |
| owner            | 150e205a8791426e8028a94699fb8848     |
| protected        | False                                |
| size             | 313851904                            |
| status           | active                               |
| tags             | []                                   |
| updated_at       | 2016-10-21T17:23:58Z                 |
| virtual_size     | None                                 |
| visibility       | public                               |
+------------------+--------------------------------------+
関連コンテンツ