@@ -19,8 +19,8 @@ import (
19
19
"k8s.io/apimachinery/pkg/api/equality"
20
20
k8serrors "k8s.io/apimachinery/pkg/api/errors"
21
21
"k8s.io/apimachinery/pkg/api/meta"
22
- "k8s.io/apimachinery/pkg/fields"
23
22
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
23
+ "k8s.io/apimachinery/pkg/fields"
24
24
k8slabels "k8s.io/apimachinery/pkg/labels"
25
25
"k8s.io/apimachinery/pkg/runtime"
26
26
"k8s.io/apimachinery/pkg/selection"
@@ -64,10 +64,10 @@ var _ = Describe("ClusterServiceVersion", func() {
64
64
65
65
When ("a CustomResourceDefinition was installed alongside a ClusterServiceVersion" , func () {
66
66
var (
67
- ns corev1.Namespace
68
- crd apiextensionsv1.CustomResourceDefinition
69
- og operatorsv1.OperatorGroup
70
- apiname string
67
+ ns corev1.Namespace
68
+ crd apiextensionsv1.CustomResourceDefinition
69
+ og operatorsv1.OperatorGroup
70
+ apiname string
71
71
apifullname string
72
72
)
73
73
@@ -144,7 +144,7 @@ var _ = Describe("ClusterServiceVersion", func() {
144
144
}).Should (WithTransform (k8serrors .IsNotFound , BeTrue ()))
145
145
})
146
146
147
- It ("can satisfy an associated ClusterServiceVersion's ownership requirement" , func () {
147
+ It ("[FLAKY] can satisfy an associated ClusterServiceVersion's ownership requirement" , func () {
148
148
associated := operatorsv1alpha1.ClusterServiceVersion {
149
149
ObjectMeta : metav1.ObjectMeta {
150
150
Name : "associated-csv" ,
@@ -261,7 +261,7 @@ var _ = Describe("ClusterServiceVersion", func() {
261
261
}).Should (Succeed ())
262
262
})
263
263
264
- It ("can satisfy an unassociated ClusterServiceVersion's non-ownership requirement" , func () {
264
+ It ("[FLAKY] can satisfy an unassociated ClusterServiceVersion's non-ownership requirement" , func () {
265
265
unassociated := operatorsv1alpha1.ClusterServiceVersion {
266
266
ObjectMeta : metav1.ObjectMeta {
267
267
Name : "unassociated-csv" ,
@@ -4206,7 +4206,7 @@ var _ = Describe("ClusterServiceVersion", func() {
4206
4206
4207
4207
var _ = Describe ("Disabling copied CSVs" , func () {
4208
4208
var (
4209
- ns corev1.Namespace
4209
+ ns corev1.Namespace
4210
4210
csv operatorsv1alpha1.ClusterServiceVersion
4211
4211
)
4212
4212
@@ -4391,7 +4391,7 @@ var _ = Describe("Disabling copied CSVs", func() {
4391
4391
}).Should (Succeed ())
4392
4392
})
4393
4393
4394
- It ("should have copied CSVs in all other Namespaces" , func () {
4394
+ It ("[FLAKY] should have copied CSVs in all other Namespaces" , func () {
4395
4395
Eventually (func () error {
4396
4396
// find copied csvs...
4397
4397
requirement , err := k8slabels .NewRequirement (operatorsv1alpha1 .CopiedLabelKey , selection .Equals , []string {csv .GetNamespace ()})
0 commit comments