github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/pkg/util/kube.go (about)

     1  package util
     2  
     3  const (
     4  	// Kube annotation for podman volume driver.
     5  	VolumeDriverAnnotation = "volume.podman.io/driver"
     6  	// Kube annotation for podman volume type.
     7  	VolumeTypeAnnotation = "volume.podman.io/type"
     8  	// Kube annotation for podman volume device.
     9  	VolumeDeviceAnnotation = "volume.podman.io/device"
    10  	// Kube annotation for podman volume UID.
    11  	VolumeUIDAnnotation = "volume.podman.io/uid"
    12  	// Kube annotation for podman volume GID.
    13  	VolumeGIDAnnotation = "volume.podman.io/gid"
    14  	// Kube annotation for podman volume mount options.
    15  	VolumeMountOptsAnnotation = "volume.podman.io/mount-options"
    16  )