mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 08:56:05 +08:00 
			
		
		
		
	Add volume.podman.io/image annotation to allow setting the source image Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			818 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			818 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package util
 | 
						|
 | 
						|
const (
 | 
						|
	// Kube annotation for podman volume driver.
 | 
						|
	VolumeDriverAnnotation = "volume.podman.io/driver"
 | 
						|
	// Kube annotation for podman volume type.
 | 
						|
	VolumeTypeAnnotation = "volume.podman.io/type"
 | 
						|
	// Kube annotation for podman volume device.
 | 
						|
	VolumeDeviceAnnotation = "volume.podman.io/device"
 | 
						|
	// Kube annotation for podman volume UID.
 | 
						|
	VolumeUIDAnnotation = "volume.podman.io/uid"
 | 
						|
	// Kube annotation for podman volume GID.
 | 
						|
	VolumeGIDAnnotation = "volume.podman.io/gid"
 | 
						|
	// Kube annotation for podman volume mount options.
 | 
						|
	VolumeMountOptsAnnotation = "volume.podman.io/mount-options"
 | 
						|
	// Kube annotation for podman volume import source.
 | 
						|
	VolumeImportSourceAnnotation = "volume.podman.io/import-source"
 | 
						|
	// Kube annotation for podman volume image.
 | 
						|
	VolumeImageAnnotation = "volume.podman.io/image"
 | 
						|
)
 |