@@ -305,6 +305,26 @@ func dc(namespace, name string, containerImages ...string) deployapi.DeploymentC
305
305
}
306
306
}
307
307
308
+ func rsList (rss ... kapisext.ReplicaSet ) kapisext.ReplicaSetList {
309
+ return kapisext.ReplicaSetList {
310
+ Items : rss ,
311
+ }
312
+ }
313
+
314
+ func rs (namespace , name string , containerImages ... string ) kapisext.ReplicaSet {
315
+ return kapisext.ReplicaSet {
316
+ ObjectMeta : metav1.ObjectMeta {
317
+ Namespace : namespace ,
318
+ Name : name ,
319
+ },
320
+ Spec : kapisext.ReplicaSetSpec {
321
+ Template : kapi.PodTemplateSpec {
322
+ Spec : podSpec (containerImages ... ),
323
+ },
324
+ },
325
+ }
326
+ }
327
+
308
328
func bcList (bcs ... buildapi.BuildConfig ) buildapi.BuildConfigList {
309
329
return buildapi.BuildConfigList {
310
330
Items : bcs ,
@@ -523,6 +543,7 @@ func TestImagePruning(t *testing.T) {
523
543
dss kapisext.DaemonSetList
524
544
deployments kapisext.DeploymentList
525
545
dcs deployapi.DeploymentConfigList
546
+ rss kapisext.ReplicaSetList
526
547
limits map [string ][]* kapi.LimitRange
527
548
expectedImageDeletions []string
528
549
expectedStreamUpdates []string
@@ -686,6 +707,15 @@ func TestImagePruning(t *testing.T) {
686
707
expectedImageDeletions : []string {"sha256:0000000000000000000000000000000000000000000000000000000000000001" },
687
708
},
688
709
710
+ "referenced by replicaset - don't prune" : {
711
+ images : imageList (
712
+ image ("sha256:0000000000000000000000000000000000000000000000000000000000000000" , registryHost + "/foo/bar@sha256:0000000000000000000000000000000000000000000000000000000000000000" ),
713
+ image ("sha256:0000000000000000000000000000000000000000000000000000000000000001" , registryHost + "/foo/bar@sha256:0000000000000000000000000000000000000000000000000000000000000001" ),
714
+ ),
715
+ rss : rsList (rs ("foo" , "rc1" , registryHost + "/foo/bar@sha256:0000000000000000000000000000000000000000000000000000000000000000" )),
716
+ expectedImageDeletions : []string {"sha256:0000000000000000000000000000000000000000000000000000000000000001" },
717
+ },
718
+
689
719
"referenced by upstream deployment - don't prune" : {
690
720
images : imageList (
691
721
image ("sha256:0000000000000000000000000000000000000000000000000000000000000000" , registryHost + "/foo/bar@sha256:0000000000000000000000000000000000000000000000000000000000000000" ),
@@ -1207,6 +1237,7 @@ func TestImagePruning(t *testing.T) {
1207
1237
DSs : & test .dss ,
1208
1238
Deployments : & test .deployments ,
1209
1239
DCs : & test .dcs ,
1240
+ RSs : & test .rss ,
1210
1241
LimitRanges : test .limits ,
1211
1242
RegistryURL : & url.URL {Scheme : "https" , Host : registryHost },
1212
1243
}
@@ -1455,6 +1486,7 @@ func TestRegistryPruning(t *testing.T) {
1455
1486
DSs : & kapisext.DaemonSetList {},
1456
1487
Deployments : & kapisext.DeploymentList {},
1457
1488
DCs : & deployapi.DeploymentConfigList {},
1489
+ RSs : & kapisext.ReplicaSetList {},
1458
1490
RegistryURL : & url.URL {Scheme : "https" , Host : "registry1.io" },
1459
1491
}
1460
1492
p , err := NewPruner (options )
@@ -1515,6 +1547,7 @@ func TestImageWithStrongAndWeakRefsIsNotPruned(t *testing.T) {
1515
1547
dss := dsList ()
1516
1548
deployments := deploymentList ()
1517
1549
dcs := dcList ()
1550
+ rss := rsList ()
1518
1551
1519
1552
options := PrunerOptions {
1520
1553
Images : & images ,
@@ -1526,6 +1559,7 @@ func TestImageWithStrongAndWeakRefsIsNotPruned(t *testing.T) {
1526
1559
DSs : & dss ,
1527
1560
Deployments : & deployments ,
1528
1561
DCs : & dcs ,
1562
+ RSs : & rss ,
1529
1563
}
1530
1564
keepYoungerThan := 24 * time .Hour
1531
1565
keepTagRevisions := 2
0 commit comments