@@ -60,40 +60,40 @@ var _ = g.Describe("[Feature:ImageQuota] Image resource quota", func() {
60
60
o .Expect (err ).NotTo (o .HaveOccurred ())
61
61
62
62
g .By (fmt .Sprintf ("trying to push image exceeding quota %v" , quota ))
63
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "first" , "refused" , imageSize , 1 , outSink , false )
63
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "first" , "refused" , imageSize , 1 , outSink , false , true )
64
64
o .Expect (err ).NotTo (o .HaveOccurred ())
65
65
66
66
quota , err = bumpQuota (oc , imageapi .ResourceImageStreams , 1 )
67
67
o .Expect (err ).NotTo (o .HaveOccurred ())
68
68
69
69
g .By (fmt .Sprintf ("trying to push image below quota %v" , quota ))
70
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "first" , "tag1" , imageSize , 1 , outSink , true )
70
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "first" , "tag1" , imageSize , 1 , outSink , true , true )
71
71
o .Expect (err ).NotTo (o .HaveOccurred ())
72
72
used , err := waitForResourceQuotaSync (oc , quotaName , quota )
73
73
o .Expect (err ).NotTo (o .HaveOccurred ())
74
74
o .Expect (assertQuotasEqual (used , quota )).NotTo (o .HaveOccurred ())
75
75
76
76
g .By (fmt .Sprintf ("trying to push image to existing image stream %v" , quota ))
77
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "first" , "tag2" , imageSize , 1 , outSink , true )
77
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "first" , "tag2" , imageSize , 1 , outSink , true , true )
78
78
o .Expect (err ).NotTo (o .HaveOccurred ())
79
79
80
80
g .By (fmt .Sprintf ("trying to push image exceeding quota %v" , quota ))
81
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "second" , "refused" , imageSize , 1 , outSink , false )
81
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "second" , "refused" , imageSize , 1 , outSink , false , true )
82
82
83
83
quota , err = bumpQuota (oc , imageapi .ResourceImageStreams , 2 )
84
84
o .Expect (err ).NotTo (o .HaveOccurred ())
85
85
used , err = waitForResourceQuotaSync (oc , quotaName , used )
86
86
o .Expect (err ).NotTo (o .HaveOccurred ())
87
87
88
88
g .By (fmt .Sprintf ("trying to push image below quota %v" , quota ))
89
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "second" , "tag1" , imageSize , 1 , outSink , true )
89
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "second" , "tag1" , imageSize , 1 , outSink , true , true )
90
90
o .Expect (err ).NotTo (o .HaveOccurred ())
91
91
used , err = waitForResourceQuotaSync (oc , quotaName , quota )
92
92
o .Expect (err ).NotTo (o .HaveOccurred ())
93
93
o .Expect (assertQuotasEqual (used , quota )).NotTo (o .HaveOccurred ())
94
94
95
95
g .By (fmt .Sprintf ("trying to push image exceeding quota %v" , quota ))
96
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "third" , "refused" , imageSize , 1 , outSink , false )
96
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "third" , "refused" , imageSize , 1 , outSink , false , true )
97
97
o .Expect (err ).NotTo (o .HaveOccurred ())
98
98
99
99
g .By ("deleting first image stream" )
@@ -110,7 +110,7 @@ var _ = g.Describe("[Feature:ImageQuota] Image resource quota", func() {
110
110
o .Expect (assertQuotasEqual (used , kapi.ResourceList {imageapi .ResourceImageStreams : resource .MustParse ("1" )})).NotTo (o .HaveOccurred ())
111
111
112
112
g .By (fmt .Sprintf ("trying to push image below quota %v" , quota ))
113
- _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "third" , "tag" , imageSize , 1 , outSink , true )
113
+ _ , _ , err = imagesutil .BuildAndPushImageOfSizeWithDocker (oc , dClient , "third" , "tag" , imageSize , 1 , outSink , true , true )
114
114
o .Expect (err ).NotTo (o .HaveOccurred ())
115
115
used , err = waitForResourceQuotaSync (oc , quotaName , quota )
116
116
o .Expect (err ).NotTo (o .HaveOccurred ())
0 commit comments