blob: 12a5af5a92b1c90cdd96451efa3db8ac08202384 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package common
const (
// AllType can be of type ImageType or ContainerType.
AllType = "all"
// ContainerType is the container type.
ContainerType = "container"
// ImageType is the image type.
ImageType = "image"
// NetworkType is the network type
NetworkType = "network"
// PodType is the pod type.
PodType = "pod"
// VolumeType is the volume type
VolumeType = "volume"
)
|