blob: 1255cdfc59b54df4201bed1ed2d98f598712853e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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"
)
|