@@ -899,7 +899,7 @@ var _ = Describe("ClusterServiceVersion", func() {
899
899
Kind : crdPlural ,
900
900
ListKind : "list" + crdPlural ,
901
901
},
902
- Scope : "Namespaced" ,
902
+ Scope : apiextensions . NamespaceScoped ,
903
903
},
904
904
})
905
905
Expect (err ).ShouldNot (HaveOccurred ())
@@ -1238,7 +1238,7 @@ var _ = Describe("ClusterServiceVersion", func() {
1238
1238
Kind : crdPlural ,
1239
1239
ListKind : "list" + crdPlural ,
1240
1240
},
1241
- Scope : "Namespaced" ,
1241
+ Scope : apiextensions . NamespaceScoped ,
1242
1242
},
1243
1243
}
1244
1244
crd .SetOwnerReferences ([]metav1.OwnerReference {{
@@ -2381,8 +2381,7 @@ var _ = Describe("ClusterServiceVersion", func() {
2381
2381
Kind : crdPlural ,
2382
2382
ListKind : "list" + crdPlural ,
2383
2383
},
2384
-
2385
- Scope : "Namespaced" ,
2384
+ Scope : apiextensions .NamespaceScoped ,
2386
2385
},
2387
2386
})
2388
2387
@@ -2574,7 +2573,7 @@ var _ = Describe("ClusterServiceVersion", func() {
2574
2573
Kind : crdPlural ,
2575
2574
ListKind : "list" + crdPlural ,
2576
2575
},
2577
- Scope : "Namespaced" ,
2576
+ Scope : apiextensions . NamespaceScoped ,
2578
2577
},
2579
2578
})
2580
2579
Expect (err ).ShouldNot (HaveOccurred ())
@@ -2764,7 +2763,7 @@ var _ = Describe("ClusterServiceVersion", func() {
2764
2763
Kind : crdPlural ,
2765
2764
ListKind : "list" + crdPlural ,
2766
2765
},
2767
- Scope : "Namespaced" ,
2766
+ Scope : apiextensions . NamespaceScoped ,
2768
2767
},
2769
2768
})
2770
2769
Expect (err ).ShouldNot (HaveOccurred ())
@@ -2954,7 +2953,7 @@ var _ = Describe("ClusterServiceVersion", func() {
2954
2953
Kind : crdPlural ,
2955
2954
ListKind : "list" + crdPlural ,
2956
2955
},
2957
- Scope : "Namespaced" ,
2956
+ Scope : apiextensions . NamespaceScoped ,
2958
2957
},
2959
2958
})
2960
2959
@@ -3125,7 +3124,7 @@ var _ = Describe("ClusterServiceVersion", func() {
3125
3124
Kind : crdPlural ,
3126
3125
ListKind : "list" + crdPlural ,
3127
3126
},
3128
- Scope : "Namespaced" ,
3127
+ Scope : apiextensions . NamespaceScoped ,
3129
3128
},
3130
3129
})
3131
3130
Expect (err ).ShouldNot (HaveOccurred ())
@@ -3403,7 +3402,7 @@ var _ = Describe("ClusterServiceVersion", func() {
3403
3402
Kind : crdPlural ,
3404
3403
ListKind : "list" + crdPlural ,
3405
3404
},
3406
- Scope : "Namespaced" ,
3405
+ Scope : apiextensions . NamespaceScoped ,
3407
3406
},
3408
3407
})
3409
3408
Expect (err ).ShouldNot (HaveOccurred ())
@@ -3567,7 +3566,7 @@ var _ = Describe("ClusterServiceVersion", func() {
3567
3566
Kind : crdPlural ,
3568
3567
ListKind : "list" + crdPlural ,
3569
3568
},
3570
- Scope : "Namespaced" ,
3569
+ Scope : apiextensions . NamespaceScoped ,
3571
3570
},
3572
3571
})
3573
3572
defer cleanupCRD ()
@@ -3797,7 +3796,7 @@ var _ = Describe("ClusterServiceVersion", func() {
3797
3796
Kind : crdPlural ,
3798
3797
ListKind : "list" + crdPlural ,
3799
3798
},
3800
- Scope : "Namespaced" ,
3799
+ Scope : apiextensions . NamespaceScoped ,
3801
3800
},
3802
3801
})
3803
3802
Expect (err ).ShouldNot (HaveOccurred ())
@@ -4346,7 +4345,7 @@ func newMockExtServerDeployment(labelName string, mGVKs []mockGroupVersionKind)
4346
4345
for _ , mGVK := range mGVKs {
4347
4346
containers = append (containers , corev1.Container {
4348
4347
Name : genName (mGVK .Name ),
4349
- Image : "quay.io/coreos /mock-extension-apiserver:master" ,
4348
+ Image : "quay.io/operator-framework /mock-extension-apiserver:master" ,
4350
4349
Command : []string {"/bin/mock-extension-apiserver" },
4351
4350
Args : []string {
4352
4351
"-v=4" ,
0 commit comments