17 lines
386 B
Go
17 lines
386 B
Go
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"
|
|
)
|