Kubernetes : KubeVirt インストール2025/04/25 |
KubeVirt をインストールして、Kubernetes クラスターで完全仮想化の仮想マシンを利用できるようにします。 当例では以下のように 3 台のノードを使用して Kubernetes クラスターを構成しています。 -----------+---------------------------+--------------------------+------------ | | | eth0|10.0.0.30 eth0|10.0.0.51 eth0|10.0.0.52 +----------+-----------+ +-----------+----------+ +-----------+----------+ | [ dlp.srv.world ] | | [ node01.srv.world ] | | [ node02.srv.world ] | | Control Plane | | Worker Node | | Worker Node | +----------------------+ +----------------------+ +----------------------+ |
[1] | KubeVirt と virtctl コマンドをインストールします。 |
[root@dlp ~]#
export VERSION=$(curl https://storage.googleapis.com/kubevirt-prow/release/kubevirt/kubevirt/stable.txt) [root@dlp ~]# wget https://github.com/kubevirt/kubevirt/releases/download/${VERSION}/kubevirt-operator.yaml [root@dlp ~]# wget https://github.com/kubevirt/kubevirt/releases/download/${VERSION}/kubevirt-cr.yaml [root@dlp ~]# wget https://github.com/kubevirt/kubevirt/releases/download/${VERSION}/virtctl-${VERSION}-linux-amd64
[root@dlp ~]#
[root@dlp ~]# mv virtctl-${VERSION}-linux-amd64 /usr/local/bin/virtctl [root@dlp ~]# chmod 755 /usr/local/bin/virtctl
kubectl apply -f kubevirt-operator.yaml namespace/kubevirt created customresourcedefinition.apiextensions.k8s.io/kubevirts.kubevirt.io created priorityclass.scheduling.k8s.io/kubevirt-cluster-critical created clusterrole.rbac.authorization.k8s.io/kubevirt.io:operator created serviceaccount/kubevirt-operator created role.rbac.authorization.k8s.io/kubevirt-operator created rolebinding.rbac.authorization.k8s.io/kubevirt-operator-rolebinding created clusterrole.rbac.authorization.k8s.io/kubevirt-operator created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-operator created deployment.apps/virt-operator created
[root@dlp ~]#
kubectl apply -f kubevirt-cr.yaml kubevirt.kubevirt.io/kubevirt created # 一定時間経過すると 関連 pod が起動 [root@dlp ~]# kubectl get pods -n kubevirt NAME READY STATUS RESTARTS AGE virt-api-c8c86b5b-hs8ps 1/1 Running 0 106s virt-api-c8c86b5b-jmc4z 1/1 Running 0 106s virt-controller-5f57b7cc79-f5h8h 1/1 Running 0 81s virt-controller-5f57b7cc79-kfx8b 1/1 Running 0 81s virt-handler-7q257 1/1 Running 0 81s virt-handler-s7jzc 1/1 Running 0 81s virt-operator-584c7dd444-f5htp 1/1 Running 0 2m40s virt-operator-584c7dd444-rfmmb 1/1 Running 0 2m40s |
[2] | テスト用の仮想マシンを作成して動作確認します。 |
[root@dlp ~]#
[root@dlp ~]# wget https://raw.githubusercontent.com/kubevirt/kubevirt.github.io/master/labs/manifests/vm.yaml [root@dlp ~]# kubectl apply -f vm.yaml virtualmachine.kubevirt.io/testvm created kubectl get vms NAME AGE STATUS READY testvm 3s Stopped False # 仮想マシン起動 [root@dlp ~]# virtctl start testvm VM testvm was scheduled to start kubectl get vms NAME AGE STATUS READY testvm 42s Running True[root@dlp ~]# kubectl get vmi NAME AGE PHASE IP NODENAME READY testvm 37s Running 192.168.40.205 node01.srv.world True # 仮想マシンに ssh で接続 # ユーザー名 'cirros', パスワード 'gocubsgo' [root@dlp ~]# ssh cirros@192.168.40.205 The authenticity of host '192.168.40.205 (192.168.40.205)' can't be established. ECDSA key fingerprint is SHA256:kIn4yKV7ebZ8lAP5zA9gXEHXMw7KVuCiSRlIC6Als74. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added '192.168.40.205' (ECDSA) to the list of known hosts. cirros@192.168.40.205's password: $ $ uname -a Linux testvm 4.4.0-28-generic #47-Ubuntu SMP Fri Jun 24 10:09:13 UTC 2016 x86_64 GNU/Linux $ cat /etc/os-release NAME=Buildroot VERSION=2015.05-g31af4e3-dirty ID=buildroot VERSION_ID=2015.05 PRETTY_NAME="Buildroot 2015.05" $ exit Connection to 192.168.40.202 closed. # 仮想マシンのコンソールに接続 [root@dlp ~]# virtctl console testvm Successfully connected to testvm console. The escape sequence is ^] login as 'cirros' user. default password: 'gocubsgo'. use 'sudo' for root. testvm login: cirros Password: $ # ホストのコンソールに戻るには Ctrl + ] キー # * virsh コマンドと同じ操作 [root@dlp ~]# # 仮想マシン停止 [root@dlp ~]# virtctl stop testvm VM testvm was scheduled to stop [root@dlp ~]# kubectl get vms NAME AGE STATUS READY testvm 2m24s Stopped False # 仮想マシン削除 [root@dlp ~]# kubectl delete vm testvm virtualmachine.kubevirt.io "testvm" deleted [root@dlp ~]# kubectl get vms No resources found in default namespace. |
Sponsored Link |
|