OpenStack Zed : イメージを登録する2023/06/27 |
Glance に イメージの登録をします。
|
|
[1] |
こちらを参考に KVM ハイパーバイザーをインストールしておきます。
リンク先 [2] のブリッジの設定は不要です。 |
[2] | Glance サービス稼働ホストで Debian 12 のイメージを作成します。 インストールには事前にダウンロードした Debian 12 インストール用 ISO ファイルを使用します。 |
# ディスクイメージを作成 root@dlp ~(keystone)# qemu-img create -f qcow2 /var/kvm/images/debian12.img 10G
# インストール root@dlp ~(keystone)# virsh net-start default root@dlp ~(keystone)# virt-install \ --name debian12 \ --ram 4096 \ --disk path=/var/kvm/images/debian12.img,format=qcow2 \ --vcpus 2 \ --os-variant debian11 \ --network network=default \ --graphics none \ --console pty,target_type=serial \ --location /home/debian-12.0.0-amd64-DVD-1.iso \ --extra-args 'console=ttyS0,115200n8 serial'
Starting install... # インストールが開始される
# インストール終了後 ゲスト上でインスタンス用に設定を調整
root@debian:~#
cat > /etc/apt/sources.list <<EOF
deb http://deb.debian.org/debian/ bookworm main non-free-firmware deb-src http://deb.debian.org/debian/ bookworm main non-free-firmware deb http://security.debian.org/debian-security bookworm-security main non-free-firmware deb-src http://security.debian.org/debian-security bookworm-security main non-free-firmware deb http://deb.debian.org/debian/ bookworm-updates main non-free-firmware deb-src http://deb.debian.org/debian/ bookworm-updates main non-free-firmware deb http://deb.debian.org/debian/ bookworm-backports main non-free-firmware EOF
root@debian:~#
apt update root@debian:~# apt -y install ssh cloud-init pollinate software-properties-common
root@debian:~#
vi /etc/default/grub # 40,41行目 : コメント化 # GRUB_TERMINAL=serial# GRUB_SERIAL_COMMAND="serial --unit=0 --speed=115200 --word=8 --parity=no --stopp=1"
root@debian:~#
update-grub
root@debian:~#
vi /etc/cloud/cloud.cfg # 13行目 : 必要に応じて追記 # SSH パスワード認証も許可する場合のみ設定
ssh_pwauth: true
# 102行目 : 必要に応じて変更 # [debian] ユーザーのパスワード認証を許可する場合のみ設定
default_user:
name: debian
lock_passwd: False
gecos: Debian
root@debian:~#
vi /etc/network/interfaces # ループバックインターフェース以外はコメント化 # allow-hotplug enp1s0# iface enp1s0 inet dhcp
root@debian:~#
systemctl enable cloud-init ssh
# シャットダウンして終了 root@debian:~# shutdown -h now
|
[3] | 作成したイメージディスクを Glance へ登録します。 |
root@dlp ~(keystone)# openstack image create "Debian12" --file /var/kvm/images/debian12.img --disk-format qcow2 --container-format bare --public +------------------+------------------------------------------------------------------------------+ | Field | Value | +------------------+------------------------------------------------------------------------------+ | container_format | bare | | created_at | 2023-06-27T05:56:13Z | | disk_format | qcow2 | | file | /v2/images/9e7f953f-9918-453d-aeeb-def892492966/file | | id | 9e7f953f-9918-453d-aeeb-def892492966 | | min_disk | 0 | | min_ram | 0 | | name | Debian12 | | owner | 757625ae78404e38a8cfdd7c6d262860 | | properties | os_hidden='False', owner_specified.openstack.md5='', owner_specified.open... | | protected | False | | schema | /v2/schemas/image | | status | queued | | tags | | | updated_at | 2023-06-27T05:56:13Z | | visibility | public | +------------------+------------------------------------------------------------------------------+root@dlp ~(keystone)# openstack image list +--------------------------------------+----------+--------+ | ID | Name | Status | +--------------------------------------+----------+--------+ | 9e7f953f-9918-453d-aeeb-def892492966 | Debian12 | active | +--------------------------------------+----------+--------+ |
[4] | インターネット上で配布されているディスクイメージを利用する場合は、ダウンロードしたものを登録すれば OK です。 |
root@dlp ~(keystone)#
root@dlp ~(keystone)# wget http://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img
openstack image create "Ubuntu2204" --file ubuntu-22.04-server-cloudimg-amd64.img --disk-format qcow2 --container-format bare --public +------------------+--------------------------------------------------------------------------------+ | Field | Value | +------------------+--------------------------------------------------------------------------------+ | container_format | bare | | created_at | 2023-06-27T06:00:42Z | | disk_format | qcow2 | | file | /v2/images/e0a4b1f8-08fb-4de0-a273-7da551b2ab70/file | | id | e0a4b1f8-08fb-4de0-a273-7da551b2ab70 | | min_disk | 0 | | min_ram | 0 | | name | Ubuntu2204 | | owner | 757625ae78404e38a8cfdd7c6d262860 | | properties | os_hidden='False', owner_specified.openstack.md5='', owner_specified.openst... | | protected | False | | schema | /v2/schemas/image | | status | queued | | tags | | | updated_at | 2023-06-27T06:00:42Z | | visibility | public | +------------------+--------------------------------------------------------------------------------+ |
Sponsored Link |