File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,27 @@ import (
6
6
"k8s.io/apimachinery/pkg/runtime"
7
7
)
8
8
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
+
9
30
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
10
31
11
32
// ImageList is a list of Image objects.
You can’t perform that action at this time.
0 commit comments