Add examples with kubevirt

* Add helpers to install kubevirt and its dependencies
* Add examples how to use kubevirt

Related-Prod: PRODX-3456
Change-Id: I3ade65df5f8ddff39f35605104851833d74690a1
diff --git a/kubevirt/examples/00-create-boot-image/Dockerfile b/kubevirt/examples/00-create-boot-image/Dockerfile
new file mode 100644
index 0000000..8f60a06
--- /dev/null
+++ b/kubevirt/examples/00-create-boot-image/Dockerfile
@@ -0,0 +1,3 @@
+FROM scratch
+ARG IMAGE_NAME=cirros-0.6.2-x86_64-disk.img
+ADD --chown=107:107 $IMAGE_NAME /disk/
diff --git a/kubevirt/examples/00-create-boot-image/build.sh b/kubevirt/examples/00-create-boot-image/build.sh
new file mode 100755
index 0000000..cddeaf4
--- /dev/null
+++ b/kubevirt/examples/00-create-boot-image/build.sh
@@ -0,0 +1,7 @@
+IMAGE_URL=https://download.cirros-cloud.net/0.6.2/cirros-0.6.2-x86_64-disk.img
+if [[ ! -f jammy-server-cloudimg-amd64.img ]]; then
+    echo "Downloading image..."
+    wget $IMAGE_URL
+fi
+echo "Building image..."
+docker build -t jumpojoy/kubevirt-cirros:0.6.2 .