OpenStack Queens : イメージを登録する2018/06/13 |
Glance に イメージの登録をします。
|
|
[1] |
こちらを参考に KVMハイパーバイザーをインストールしておきます。
リンク先 [3] のブリッジの設定は不要です。 |
[2] | Glance サービス稼働ホストで Ubuntu 18.04 のイメージを作成します。 |
# ディスクイメージを作成しておく root@dlp ~(keystone)# qemu-img create -f qcow2 /var/kvm/images/ubuntu1804.img 10G
# インストール root@dlp ~(keystone)# virt-install \
--name ubuntu1804 \ --ram 2048 \ --disk path=/var/kvm/images/ubuntu1804.img,format=qcow2 \ --vcpus 2 \ --os-type linux \ --os-variant ubuntu17.10 \ --network network=default \ --graphics none \ --console pty,target_type=serial \ --location 'http://ftp.riken.go.jp/Linux/ubuntu/dists/bionic/main/installer-amd64/' \ --extra-args 'console=ttyS0,115200n8 serial'
Starting install...
# インストールが開始される
# インストール終了後、ホスト側からシャットダウン root@dlp ~(keystone)# virsh shutdown ubuntu1804
# ゲストの仮想ディスクマウント root@dlp ~(keystone)# guestmount -d ubuntu1804 -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 ubuntu1804 --console
# ゲスト側でインスタンス用設定 root@ubuntu:~# apt-get update root@ubuntu:~# apt-get -y install ssh cloud-init linux-virtual pollinate software-properties-common
root@ubuntu:~#
vi /etc/default/grub # 11行目:以下のように変更 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="" # 35,36行目:コメント化 # 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
# 93行目:変更 ([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 "Ubuntu1804" --file /var/kvm/images/ubuntu1804.img --disk-format qcow2 --container-format bare --public +------------------+------------------------------------------------------+ | Field | Value | +------------------+------------------------------------------------------+ | checksum | db7ba6799ed0ecbd1e75b32522e38500 | | container_format | bare | | created_at | 2018-06-13T04:40:23Z | | disk_format | qcow2 | | file | /v2/images/bb285a87-fe42-449a-a659-b5a304177b18/file | | id | bb285a87-fe42-449a-a659-b5a304177b18 | | min_disk | 0 | | min_ram | 0 | | name | Ubuntu1804 | | owner | 12d80218a35e4c62aa0403e92b5b649a | | protected | False | | schema | /v2/schemas/image | | size | 2980839424 | | status | active | | tags | | | updated_at | 2018-06-13T04:40:42Z | | virtual_size | None | | visibility | public | +------------------+------------------------------------------------------+root@dlp ~(keystone)# openstack image list +--------------------------------------+------------+--------+ | ID | Name | Status | +--------------------------------------+------------+--------+ | bb285a87-fe42-449a-a659-b5a304177b18 | Ubuntu1804 | active | +--------------------------------------+------------+--------+ |
[4] | インターネット上で配布されているディスクイメージを利用する場合は、ダウンロードしたものを登録すれば OK です。 |
root@dlp ~(keystone)#
root@dlp ~(keystone)# wget http://cloud-images.ubuntu.com/releases/18.04/release/ubuntu-18.04-server-cloudimg-amd64.img -P /var/kvm/images
openstack image create "Ubuntu1804" --file /var/kvm/images/ubuntu-18.04-server-cloudimg-amd64.img --disk-format qcow2 --container-format bare --public +------------------+------------------------------------------------------+ | Field | Value | +------------------+------------------------------------------------------+ | checksum | d7912161a35c8e8cc384589601751dd8 | | container_format | bare | | created_at | 2018-06-13T04:46:27Z | | disk_format | qcow2 | | file | /v2/images/7e22891e-9d01-49b4-9eb2-4b02dbab051c/file | | id | 7e22891e-9d01-49b4-9eb2-4b02dbab051c | | min_disk | 0 | | min_ram | 0 | | name | Ubuntu1804 | | owner | 12d80218a35e4c62aa0403e92b5b649a | | protected | False | | schema | /v2/schemas/image | | size | 336461824 | | status | active | | tags | | | updated_at | 2018-06-13T04:46:29Z | | virtual_size | None | | visibility | public | +------------------+------------------------------------------------------+ |
Sponsored Link |