Argo Workflows · Schema
io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource
Represents a vSphere volume resource.
CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine
Properties
| Name | Type | Description |
|---|---|---|
| fsType | string | fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. |
| storagePolicyID | string | storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. |
| storagePolicyName | string | storagePolicyName is the storage Policy Based Management (SPBM) profile name. |
| volumePath | string | volumePath is the path that identifies vSphere volume vmdk |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-k8s-api-core-v1-vsphere-virtual-disk-volume-source-schema.json",
"title": "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource",
"description": "Represents a vSphere volume resource.",
"type": "object",
"properties": {
"fsType": {
"description": "fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
"type": "string"
},
"storagePolicyID": {
"description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.",
"type": "string"
},
"storagePolicyName": {
"description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.",
"type": "string"
},
"volumePath": {
"description": "volumePath is the path that identifies vSphere volume vmdk",
"type": "string"
}
},
"required": [
"volumePath"
]
}