mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-06 06:46:26 +01:00
26 lines
552 B
Plaintext
26 lines
552 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * virt/virtual_machines/cloning_vms/virt-cloning-vm-disk-into-new-datavolume.adoc
|
|
|
|
[id="virt-template-datavolume-clone_{context}"]
|
|
= Template: DataVolume clone configuration file
|
|
|
|
*example-clone-dv.yaml*
|
|
[source,yaml]
|
|
----
|
|
apiVersion: cdi.kubevirt.io/v1beta1
|
|
kind: DataVolume
|
|
metadata:
|
|
name: "example-clone-dv"
|
|
spec:
|
|
source:
|
|
pvc:
|
|
name: source-pvc
|
|
namespace: example-ns
|
|
pvc:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: "1G"
|
|
---- |