added ISCSI volume plugin to PersistentVolumeSource

This commit is contained in:
markturansky
2015-05-12 16:40:31 -04:00
parent e0092a1c23
commit 5b23fc39b2
8 changed files with 49 additions and 0 deletions

View File

@@ -156,6 +156,9 @@ type PersistentVolumeSource struct {
NFS *NFSVolumeSource `json:"nfs" description:"NFS volume resource provisioned by an admin"`
// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime
RBD *RBDVolumeSource `json:"rbd" description:"rados block volume that will be mounted on the host machine"`
// ISCSI represents an ISCSI Disk resource that is attached to a
// kubelet's host machine and then exposed to the pod.
ISCSI *ISCSIVolumeSource `json:"iscsi" description:"an iSCSI disk resource provisioned by an admin"`
}
type PersistentVolumeClaimVolumeSource struct {