Merge pull request #20900 from jsafrane/devel/volume-names

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2016-02-13 17:58:29 -08:00
12 changed files with 86 additions and 18 deletions

View File

@@ -49,6 +49,10 @@ type VolumeOptions struct {
AccessModes []api.PersistentVolumeAccessMode
// Reclamation policy for a persistent volume
PersistentVolumeReclaimPolicy api.PersistentVolumeReclaimPolicy
// PV.Name of the appropriate PersistentVolume. Used to generate cloud volume name.
PVName string
// Unique name of Kubernetes cluster.
ClusterName string
// Tags to attach to the real volume in the cloud provider - e.g. AWS EBS
CloudTags *map[string]string
}