Skip to content

Commit cb68976

Browse files
Merge pull request #86 from soltysh/image_types
Add missing image API types
2 parents 582a6a1 + 5e61905 commit cb68976

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

image/v1/types.go

+21
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ import (
66
"k8s.io/apimachinery/pkg/runtime"
77
)
88

9+
const (
10+
// ResourceImageStreams represents a number of image streams in a project.
11+
ResourceImageStreams corev1.ResourceName = "openshift.io/imagestreams"
12+
13+
// ResourceImageStreamImages represents a number of unique references to images in all image stream
14+
// statuses of a project.
15+
ResourceImageStreamImages corev1.ResourceName = "openshift.io/images"
16+
17+
// ResourceImageStreamTags represents a number of unique references to images in all image stream specs
18+
// of a project.
19+
ResourceImageStreamTags corev1.ResourceName = "openshift.io/image-tags"
20+
21+
// Limit that applies to images. Used with a max["storage"] LimitRangeItem to set
22+
// the maximum size of an image.
23+
LimitTypeImage corev1.LimitType = "openshift.io/Image"
24+
25+
// Limit that applies to image streams. Used with a max[resource] LimitRangeItem to set the maximum number
26+
// of resource. Where the resource is one of "openshift.io/images" and "openshift.io/image-tags".
27+
LimitTypeImageStream corev1.LimitType = "openshift.io/ImageStream"
28+
)
29+
930
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
1031

1132
// ImageList is a list of Image objects.

0 commit comments

Comments
 (0)