You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/virt-creating-vddk-image.adoc
+15-17Lines changed: 15 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,23 +5,19 @@
5
5
[id="virt-creating-vddk-image_{context}"]
6
6
= Creating a VDDK image
7
7
8
-
The VMware Virtual Disk Development Kit (VDDK) SDK is used to copy VMware virtual disks.
9
-
10
-
You can download VDDK, convert it into an image, push the image to a private container repository, and add it to the `v2v-vmware` ConfigMap.
8
+
You can convert the VMware Virtual Disk Development Kit (VDDK) into an image, and push the image to an image registry. Then, add the image to the `v2v-vmware` ConfigMap.
11
9
12
10
.Prerequisites
13
11
14
-
* You must have a VMware account to download VDDK.
15
-
* You must be logged in to your private container repository.
16
-
+
17
-
Storing the VDDK image in a public repository may violate the terms of the VMware license.
12
+
* You must configure an image registry.
13
+
* You must download the VDDK archive file.
18
14
19
15
.Procedure
20
16
21
-
. Create a temporary directory for VDDK:
17
+
. Create and navigate to a temporary directory:
22
18
+
23
19
----
24
-
$ mkdir /tmp/my_vddk && cd /tmp/my_vddk
20
+
$ mkdir /tmp/<dir_name> && cd /tmp/<dir_name>
25
21
----
26
22
27
23
. In a browser, navigate to link:https://www.vmware.com/support/pubs/[VMware Documentation].
@@ -33,7 +29,8 @@ $ mkdir /tmp/my_vddk && cd /tmp/my_vddk
33
29
$ tar -xzf VMware-vix-disklib-<version>.x86_64.tar.gz
34
30
----
35
31
36
-
. Create a *Dockerfile*:
32
+
. Extract the VDDK archive file to your temporary directory.
== Creating and using a VMware Virtual Disk Development Kit image
16
+
17
+
The VMware Virtual Disk Development Kit (VDDK) SDK is used to copy VMware virtual disks. You can create a VDDK image and add it to the the `v2v-vmware` ConfigMap to import a VMware virtual machine.
18
+
19
+
You can store the VDDK image in the internal {product-title} image registry or in a secure external image registry.
20
+
21
+
[NOTE]
22
+
====
23
+
Storing the VDDK image in a public registry might violate the terms of the VMware license.
24
+
====
25
+
15
26
.Prerequisites
16
27
28
+
* You must configure an image registry.
29
+
30
+
=== Accessing the internal image registry
31
+
32
+
You can access an {product-title} registry directly, from within the cluster, or externally, by exposing the registry with a route.
33
+
34
+
Internal access::
35
+
You can access the internal image registry xref:../../../registry/accessing-the-registry.adoc#registry-accessing-directly_accessing-the-registry[directly, from your cluster].
36
+
37
+
External access::
38
+
You can access the internal image registry externally, xref:../../../registry/securing-exposing-registry.adoc#registry-exposing-secure-registry-manually_securing-exposing-registry[by exposing the image registry with a route].
39
+
40
+
=== Accessing an external image registry
41
+
42
+
You can access an external image registry from an {product-title} cluster.
43
+
44
+
.Procedure
45
+
46
+
. xref:../../../builds/setting-up-trusted-ca.adoc#configmap-adding-ca_setting-up-trusted-ca[Add certificate authorities] for the external image registry to the {product-title} cluster.
47
+
48
+
. Optionally, you can create a xref:../../../openshift_images/managing_images/using-image-pull-secrets.adoc#images-allow-pods-to-reference-images-from-secure-registries_using-image-pull-secrets[pull secret from your Docker credentials and add it to your service account].
0 commit comments