mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 18:28:13 +00:00 
			
		
		
		
	Add ClassName attributes to PV and PVC
This commit is contained in:
		| @@ -404,6 +404,10 @@ type PersistentVolumeSpec struct { | ||||
| 	// Optional: what happens to a persistent volume when released from its claim. | ||||
| 	// +optional | ||||
| 	PersistentVolumeReclaimPolicy PersistentVolumeReclaimPolicy | ||||
| 	// Name of StorageClass to which this persistent volume belongs. Empty value | ||||
| 	// means that this volume does not belong to any StorageClass. | ||||
| 	// +optional | ||||
| 	StorageClassName string | ||||
| } | ||||
|  | ||||
| // PersistentVolumeReclaimPolicy describes a policy for end-of-life maintenance of persistent volumes | ||||
| @@ -481,6 +485,10 @@ type PersistentVolumeClaimSpec struct { | ||||
| 	// claim. When set to non-empty value Selector is not evaluated | ||||
| 	// +optional | ||||
| 	VolumeName string | ||||
| 	// Name of the StorageClass required by the claim. | ||||
| 	// More info: http://kubernetes.io/docs/user-guide/persistent-volumes#class-1 | ||||
| 	// +optional | ||||
| 	StorageClassName *string | ||||
| } | ||||
|  | ||||
| type PersistentVolumeClaimStatus struct { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jan Safranek
					Jan Safranek