OpenStack Yoga : イメージを登録する2022/05/31 |
Glance に イメージの登録をします。
例として、CentOS Stream 8 のイメージを作成して Glance へ登録します。 |
|
[1] | |
[2] | Glance サービス稼働ホストで CentOS Stream 8 のイメージを作成します。 CentOS Stream 8 のインストール用 ISO イメージは前もって任意のディレクトリへダウンロードしておきます。 |
# ディスクイメージ作成 [root@dlp ~(keystone)]# qemu-img create -f qcow2 /var/kvm/images/centos-st8.img 10G
# インストール [root@dlp ~(keystone)]# virt-install \
--name centos-st8 \ --ram 4096 \ --disk path=/var/kvm/images/centos-st8.img,format=qcow2 \ --vcpus 2 \ --os-variant centos-stream8 \ --network network=default \ --graphics none \ --console pty,target_type=serial \ --location /home/CentOS-Stream-8-x86_64-latest-dvd1.iso \ --extra-args 'console=ttyS0,115200n8'
Starting install...
# 仮想マシン起動後、ログインして最低限必要な設定を適用
CentOS Stream 8
Kernel 4.18.0-348.2.1.el8_5.x86_64 on an x86_64
Activate the web console with: systemctl enable --now cockpit.socket
localhost login: root
# インターフェース名 [enp1s0] は環境によって異なるため自身の名称に置き換え [root@localhost ~]# useradd centos [root@localhost ~]# passwd centos
[root@localhost ~]#
vi /etc/sysconfig/network-scripts/ifcfg-enp1s0 # [UUID] 行は無効化して [BOOTPROTO] は [dhcp] にする #UUID="3ebe29b4-b7a3-49d6-997a-ee8b78749840" BOOTPROTO=dhcp[root@localhost ~]# dnf -y install cloud-init openssh-server
[root@localhost ~]#
vi /etc/cloud/cloud.cfg # 5行目 : パスワード認証での SSH ログインを許可したい場合は変更 ssh_pwauth: 1 # 57, 58行目 : デフォルトユーザーを追加した [centos] に変更 # [centos] にパスワード認証での SSH 認証を許可する場合は変更 system_info: default_user: name: centos lock_passwd: false[root@localhost ~]# systemctl enable cloud-init sshd [root@localhost ~]# shutdown -h now |
[3] | 作成したディスクイメージを Glance へ登録します。 |
[root@dlp ~(keystone)]# openstack image create "CentOS-Stream-8" --file /var/kvm/images/centos-st8.img --disk-format qcow2 --container-format bare --public +------------------+---------------------------------------------------------------------------+ | Field | Value | +------------------+---------------------------------------------------------------------------+ | container_format | bare | | created_at | 2022-05-31T01:17:58Z | | disk_format | qcow2 | | file | /v2/images/7be5b7ab-36e8-43c7-95dd-34b4139a0e44/file | | id | 7be5b7ab-36e8-43c7-95dd-34b4139a0e44 | | min_disk | 0 | | min_ram | 0 | | name | CentOS-Stream-8 | | owner | 0609d3b3b398456187fb705ec9224c4a | | properties | os_hidden='False', owner_specified.openstack.md5='', owner_specified..... | | protected | False | | schema | /v2/schemas/image | | status | queued | | tags | | | updated_at | 2022-05-31T01:17:58Z | | visibility | public | +------------------+---------------------------------------------------------------------------+[root@dlp ~(keystone)]# openstack image list +--------------------------------------+-----------------+--------+ | ID | Name | Status | +--------------------------------------+-----------------+--------+ | 7be5b7ab-36e8-43c7-95dd-34b4139a0e44 | CentOS-Stream-8 | 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-Official" --file ubuntu-22.04-server-cloudimg-amd64.img --disk-format qcow2 --container-format bare --public +------------------+-----------------------------------------------------------------------------+ | Field | Value | +------------------+-----------------------------------------------------------------------------+ | container_format | bare | | created_at | 2022-05-31T01:21:20Z | | disk_format | qcow2 | | file | /v2/images/2c1c506d-53f7-4a19-8ac9-9fe20fc1cc5a/file | | id | 2c1c506d-53f7-4a19-8ac9-9fe20fc1cc5a | | min_disk | 0 | | min_ram | 0 | | name | Ubuntu2204-Official | | owner | 0609d3b3b398456187fb705ec9224c4a | | properties | os_hidden='False', owner_specified.openstack.md5='', owner_specified.o..... | | protected | False | | schema | /v2/schemas/image | | status | queued | | tags | | | updated_at | 2022-05-31T01:21:20Z | | visibility | public | +------------------+-----------------------------------------------------------------------------+ |
Sponsored Link |