@@ -239,16 +239,16 @@ var _ = g.Describe("[sig-cluster-lifecycle][Feature:Machines][Serial] Managed cl
239
239
240
240
except := func (co string ) string {
241
241
switch co {
242
- case "network " :
243
- return "https://issues.redhat.com/browse/OCPBUGS-TODO "
242
+ case "dns " :
243
+ return "https://issues.redhat.com/browse/OCPBUGS-62623 "
244
244
case "image-registry" :
245
- return "https://issues.redhat.com/browse/OCPBUGS-TODO"
245
+ return "https://issues.redhat.com/browse/OCPBUGS-62626"
246
+ case "network" :
247
+ return "https://issues.redhat.com/browse/OCPBUGS-62630"
246
248
case "node-tuning" :
247
- return "https://issues.redhat.com/browse/OCPBUGS-TODO "
249
+ return "https://issues.redhat.com/browse/OCPBUGS-62632 "
248
250
case "storage" :
249
- return "https://issues.redhat.com/browse/OCPBUGS-TODO"
250
- case "dns" :
251
- return "https://issues.redhat.com/browse/OCPBUGS-TODO"
251
+ return "https://issues.redhat.com/browse/OCPBUGS-62633"
252
252
default :
253
253
return ""
254
254
}
@@ -258,13 +258,20 @@ var _ = g.Describe("[sig-cluster-lifecycle][Feature:Machines][Serial] Managed cl
258
258
// https://github.com/openshift/api/blob/61248d910ff74aef020492922d14e6dadaba598b/config/v1/types_cluster_operator.go#L163-L164
259
259
operatorsNotProgressingAfter := getOperatorsNotProgressing (configClient )
260
260
var violations []string
261
+ exceptions := map [string ]string {}
261
262
for operator , t1 := range operatorsNotProgressing {
262
263
t2 , ok := operatorsNotProgressingAfter [operator ]
263
- if reason := except (operator ); reason == "" && (! ok || t1 .Unix () != t2 .Unix ()) {
264
+ if ! ok || t1 .Unix () != t2 .Unix () {
265
+ if reason := except (operator ); reason != "" {
266
+ exceptions [operator ] = reason
267
+ continue
268
+ }
264
269
violations = append (violations , operator )
265
270
}
266
271
}
267
-
272
+ if len (exceptions ) > 0 {
273
+ e2e .Logf ("those cluster operators left Progressing=False while cluster was scaling for a reason: %v" , exceptions )
274
+ }
268
275
o .Expect (violations ).To (o .BeEmpty (), "those cluster operators left Progressing=False while cluster was scaling: %v" , violations )
269
276
})
270
277
0 commit comments