Added NFS to PV structs

This commit is contained in:
markturansky
2015-04-30 12:16:51 -04:00
parent e25210d367
commit 68ce264a6d
7 changed files with 20 additions and 0 deletions

View File

@@ -145,6 +145,8 @@ type PersistentVolumeSource struct {
HostPath *HostPathVolumeSource `json:"hostPath" description:"a HostPath provisioned by a developer or tester; for develment use only"`
// Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod
Glusterfs *GlusterfsVolumeSource `json:"glusterfs" description:"Glusterfs volume resource provisioned by an admin"`
// NFS represents an NFS mount on the host
NFS *NFSVolumeSource `json:"nfs" description:"NFS volume resource provisioned by an admin"`
}
type PersistentVolumeClaimVolumeSource struct {