From a7a8af7a8d389f2f8a883f3edc761ac89865846d Mon Sep 17 00:00:00 2001 From: Min Pae Date: Mon, 8 Aug 2016 16:17:05 -0700 Subject: [PATCH] fix vsphere volume type for Pod spec docs The documentation has vsphere volumes for the Pod spec as vsphereVirtualDisk. It should instead be vsphereVolume. --- docs/user-guide/volumes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user-guide/volumes.md b/docs/user-guide/volumes.md index 7e14fe6c92..4a33178baf 100644 --- a/docs/user-guide/volumes.md +++ b/docs/user-guide/volumes.md @@ -76,7 +76,7 @@ Kubernetes supports several types of Volumes: * `persistentVolumeClaim` * `downwardAPI` * `azureFileVolume` - * `vsphereVirtualDisk` + * `vsphereVolume` We welcome additional contributions. @@ -445,7 +445,7 @@ into a Pod. More details can be found [here](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/volumes/azure_file/README.md) -### vsphereVirtualDisk +### vsphereVolume A `VSphereVirtualDisk` is used to mount a vSphere VMDK Volume into your Pod. The contents of a volume are preserved when it is unmounted. @@ -478,7 +478,7 @@ spec: volumes: - name: test-volume # This VMDK volume must already exist. - vsphereVirtualDisk: + vsphereVolume: volumePath: myDisk fsType: ext4 ```