You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The automation case 42543 was reverted by #1353
This PR will fix the issue on disconnected environment and added back the case which initialized by
#1309
o.Expect(sccAnnotation).To(o.Equal("hostaccess"), "Expected the annotation 'openshift.io/scc annotation' on pod %s to have the value 'hostaccess', but got %s", cvoPod.Name, sccAnnotation)
101
110
})
111
+
112
+
g.It(`should not install resources annotated with release.openshift.io/delete=true`, g.Label("Conformance", "High", "42543", "ConnectedOnly"), func() {
113
+
ctx:=context.Background()
114
+
err:=util.SkipIfHypershift(ctx, restCfg)
115
+
o.Expect(err).NotTo(o.HaveOccurred(), "Failed to determine if cluster is HyperShift")
116
+
err=util.SkipIfMicroshift(ctx, restCfg)
117
+
o.Expect(err).NotTo(o.HaveOccurred(), "Failed to determine if cluster is MicroShift")
0 commit comments