Merge pull request #8133 from markturansky/iscsi_pv2

added ISCSI volume plugin to PersistentVolumeSource
This commit is contained in:
Tim Hockin
2015-05-27 08:36:37 -07:00
10 changed files with 76 additions and 1 deletions

View File

@@ -228,6 +228,9 @@ type PersistentVolumeSource struct {
NFS *NFSVolumeSource `json:"nfs"`
// RBD represents a Rados Block Device mount on the host that shares a pod's lifetime
RBD *RBDVolumeSource `json:"rbd"`
// ISCSIVolumeSource represents an ISCSI resource that is attached to a
// kubelet's host machine and then exposed to the pod.
ISCSI *ISCSIVolumeSource `json:"iscsi"`
}
type PersistentVolumeClaimVolumeSource struct {