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/03-boot-vm-volumes/pvc.yaml b/kubevirt/examples/03-boot-vm-volumes/pvc.yaml
new file mode 100644
index 0000000..80d8fa0
--- /dev/null
+++ b/kubevirt/examples/03-boot-vm-volumes/pvc.yaml
@@ -0,0 +1,12 @@
+apiVersion: v1
+kind: PersistentVolumeClaim
+metadata:
+ name: cirros-volumes
+ namespace: default
+spec:
+ accessModes:
+ - ReadWriteOnce
+ resources:
+ requests:
+ storage: 2G
+ volumeMode: Filesystem