This demo will deploy KubeVirt on an existing minikube with Kubernetes 1.9 or later.
This demo assumes that minikube is up and running and kubectl available on your system. If not, then please take a look at the guide below
With minikube RUNNING, you can easily deploy KubeVirt:
$ export VERSION=v0.4.1
$ kubectl create \
-f https://github.com/kubevirt/kubevirt/releases/download/$VERSION/kubevirt.yamlNote: The initial deployment to a new minikube instance can take a long time, because a number of containers have to be pulled from the internet. Use
watch kubectl get --all-namespaces podsto monitor the progress.
Note: This requires
kubectlfrom Kubernetes 1.9 or later on the client
An additional binary is provided to get quick access to the serial and graphical ports of a VM, and handle start/stop operations.
The tool is called virtctl and can be retrieved from the release page of KubeVirt:
$ curl -L -o virtctl \
https://github.com/kubevirt/kubevirt/releases/download/$VERSION/virtctl-$VERSION-linux-amd64
$ chmod +x virtctlOnce you deployed KubeVirt you are ready to launch a VM:
# Creating a virtual machine
$ kubectl apply -f https://raw.githubusercontent.com/kubevirt/demo/master/manifests/vm.yaml
# After deployment you can manage VMs using the usual verbs:
$ kubectl get ovms
$ kubectl get ovms -o yaml testvm
# To start an offline VM you can use
$ ./virtctl start testvm
$ kubectl get vms
$ kubectl get vms -o yaml testvm
# To shut it down again
$ ./virtctl stop testvm
# To delete
$ kubectl delete vms testvm
# To create your own
$ kubectl create -f $YOUR_VM_SPEC# Connect to the serial console
$ ./virtctl console testvm
# Connect to the graphical display
# Note: Requires `remote-viewer` from the `virt-viewer` package.
$ ./virtctl vnc testvm
Now that KubeVirt is up an running, you can take a look at the user guide to understand how you can create and manage your own virtual machines.
-
If not installed, install minikube as described here:
- Install the kvm2 driver
- Download the
minikubebinary
-
Verify nested virtualization is enabled on the machine minikube is being installed on:
$ cat /sys/module/kvm_intel/parameters/nested
Y- Launch minikube with CNI:
$ minikube start \
--vm-driver kvm2 \
--network-plugin cni- Install
kubectlvia a package manager or download it