Ubuntu 20.04
Sponsored Link

OpenStack Ussuri : イメージを登録する2020/06/05

 
Glance に イメージの登録をします。
[1]
こちらを参考に KVM ハイパーバイザーをインストールしておきます
リンク先 [2] のブリッジの設定は不要です。
[2] Glance サービス稼働ホストで Ubuntu 20.04 のイメージを作成します。
# ディスクイメージを格納するディレクトリを作成

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

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

root@dlp ~(keystone)#
virt-install \
--name ubuntu2004 \
--ram 2048 \
--disk path=/var/kvm/images/ubuntu2004.img,format=qcow2 \
--vcpus 2 \
--os-type linux \
--os-variant ubuntu20.04 \
--network network=default \
--graphics none \
--console pty,target_type=serial \
--location 'http://archive.ubuntu.com/ubuntu/dists/focal/main/installer-amd64/' \
--extra-args 'console=ttyS0,115200n8 serial'
Starting install...    
# インストールが開始される
# インストール終了後、ホスト側からシャットダウン

root@dlp ~(keystone)#
virsh shutdown ubuntu2004
# ゲストの仮想ディスクマウント

root@dlp ~(keystone)#
guestmount -d ubuntu2004 -i /mnt
# getty@ttyS0.service を有効にする

root@dlp ~(keystone)#
ln -s /mnt/lib/systemd/system/getty@.service /mnt/etc/systemd/system/getty.target.wants/getty@ttyS0.service

# アンマウントして起動

root@dlp ~(keystone)#
umount /mnt

root@dlp ~(keystone)#
virsh start ubuntu2004 --console
# ゲスト側でインスタンス用設定

root@ubuntu:~#
apt update

root@ubuntu:~#
apt -y install ssh cloud-init linux-virtual pollinate

root@ubuntu:~#
vi /etc/default/grub
# 10行目:以下のように変更

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="
console=tty1 console=ttyS0
"
GRUB_CMDLINE_LINUX=""
# 34,35行目:コメント化

#
GRUB_TERMINAL=serial
#
GRUB_SERIAL_COMMAND="serial --unit=0 --speed=115200 --word=8 --parity=no --stopp=1"
root@ubuntu:~#
update-grub
root@ubuntu:~#
vi /etc/cloud/cloud.cfg
# 13行目:追記

# SSH パスワード認証も許可する場合のみ設定

ssh_pwauth: true
# 94行目:変更

# [ubuntu] ユーザーのパスワード認証を許可する場合のみ設定

default_user:
    name: ubuntu
    lock_passwd:
False
root@ubuntu:~#
systemctl enable serial-getty@ttyS0.service
# シャットダウンして終了

root@ubuntu:~#
shutdown -h now
[3] 作成したイメージディスクを Glance へ登録します。
root@dlp ~(keystone)#
openstack image create "Ubuntu2004" --file /var/kvm/images/ubuntu2004.img --disk-format qcow2 --container-format bare --public

+------------------+-------------------------------------------------------------------------------+
| Field            | Value                                                                         |
+------------------+-------------------------------------------------------------------------------+
| checksum         | 8112509b5fda156387336244b130f1eb                                              |
| container_format | bare                                                                          |
| created_at       | 2020-06-04T03:38:13Z                                                          |
| disk_format      | qcow2                                                                         |
| file             | /v2/images/de51f2d9-aa58-4a34-87d6-857451599d9a/file                          |
| id               | de51f2d9-aa58-4a34-87d6-857451599d9a                                          |
| min_disk         | 0                                                                             |
| min_ram          | 0                                                                             |
| name             | Ubuntu2004                                                                    |
| owner            | 3227cdd34d5c4d9c97eeb8f0dfdf5d0e                                              |
| properties       | os_hash_algo='sha512', os_hash_value='cd0c29d9fa03a0cad6e265ed4829ba3c27e8... |
| protected        | False                                                                         |
| schema           | /v2/schemas/image                                                             |
| size             | 3137404928                                                                    |
| status           | active                                                                        |
| tags             |                                                                               |
| updated_at       | 2020-06-04T03:38:30Z                                                          |
| visibility       | public                                                                        |
+------------------+-------------------------------------------------------------------------------+

root@dlp ~(keystone)#
openstack image list

+--------------------------------------+------------+--------+
| ID                                   | Name       | Status |
+--------------------------------------+------------+--------+
| de51f2d9-aa58-4a34-87d6-857451599d9a | Ubuntu2004 | active |
+--------------------------------------+------------+--------+
[4] インターネット上で配布されているディスクイメージを利用する場合は、ダウンロードしたものを登録すれば OK です。
root@dlp ~(keystone)#
wget http://cloud-images.ubuntu.com/releases/20.04/release/ubuntu-20.04-server-cloudimg-amd64.img -P /var/kvm/images
root@dlp ~(keystone)#
openstack image create "Ubuntu2004-Official" --file /var/kvm/images/ubuntu-20.04-server-cloudimg-amd64.img --disk-format qcow2 --container-format bare --public

+------------------+----------------------------------------------------------------------------------------------+
| Field            | Value                                                                                        |
+------------------+----------------------------------------------------------------------------------------------+
| checksum         | be096b5b3c1a28f9416deed0253ad3e2                                                             |
| container_format | bare                                                                                         |
| created_at       | 2020-06-04T03:43:24Z                                                                         |
| disk_format      | qcow2                                                                                        |
| file             | /v2/images/ecfb5b90-eb90-436e-b853-16ede5f55bda/file                                         |
| id               | ecfb5b90-eb90-436e-b853-16ede5f55bda                                                         |
| min_disk         | 0                                                                                            |
| min_ram          | 0                                                                                            |
| name             | Ubuntu2004-Official                                                                          |
| owner            | 3227cdd34d5c4d9c97eeb8f0dfdf5d0e                                                             |
| properties       | os_hash_algo='sha512', os_hash_value='1cbc97f05e9de86ea571dd154b855dd217de51905367e9599c1... |
| protected        | False                                                                                        |
| schema           | /v2/schemas/image                                                                            |
| size             | 533856256                                                                                    |
| status           | active                                                                                       |
| tags             |                                                                                              |
| updated_at       | 2020-06-04T03:43:27Z                                                                         |
| visibility       | public                                                                                       |
+------------------+----------------------------------------------------------------------------------------------+
関連コンテンツ