mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
22 lines
710 B
Plaintext
22 lines
710 B
Plaintext
// Module included in the following definitions:
|
|
//
|
|
// * storage/dynamic-provisioning.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="vsphere-definition_{context}"]
|
|
= VMware vSphere object definition
|
|
|
|
.vsphere-storageclass.yaml
|
|
[source,yaml]
|
|
----
|
|
kind: StorageClass
|
|
apiVersion: storage.k8s.io/v1
|
|
metadata:
|
|
name: <storage-class-name> <1>
|
|
provisioner: csi.vsphere.vmware.com <2>
|
|
----
|
|
<1> Name of the storage class. The persistent volume claim uses this storage class for provisioning the associated persistent volumes.
|
|
<2> For more information about using VMware vSphere CSI with {product-title},
|
|
see the
|
|
link:https://kubernetes.io/docs/concepts/storage/volumes/#vsphere-csi-migration[Kubernetes documentation].
|