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
upkeep: removed two node suite from regular checks
updated tests to always target two node topology instead of being a suite tests
small refactor and testing name change
Signed-off-by: ehila <[email protected]>
var_=g.Describe("[sig-node][apigroup:config.openshift.io][OCPFeatureGate:DualReplica][Suite:openshift/two-node] Two Node with Fencing topology", func() {
17
+
var_=g.Describe("[sig-node][apigroup:config.openshift.io][OCPFeatureGate:DualReplica] Two Node with Fencing topology", func() {
18
18
deferg.GinkgoRecover()
19
19
var (
20
20
oc=exutil.NewCLIWithoutNamespace("")
@@ -24,13 +24,13 @@ var _ = g.Describe("[sig-node][apigroup:config.openshift.io][OCPFeatureGate:Dual
24
24
skipIfNotTopology(oc, v1.DualReplicaTopologyMode)
25
25
})
26
26
27
-
g.It("Should validate the number of control-planes, arbiters as configured", func() {
27
+
g.It("should only have two control plane nodes and no arbiter nodes", func() {
28
28
const (
29
29
expectedControlPlanes=2
30
30
expectedArbiters=0
31
31
)
32
32
33
-
g.By(fmt.Sprintf("Ensuring only %d Control-plane nodes in the cluster, and %d Arbiter nodes", expectedControlPlanes, expectedArbiters))
33
+
g.By(fmt.Sprintf("Ensuring only %d control-plane nodes in the cluster and no arbiter nodes", expectedControlPlanes))
@@ -45,59 +45,56 @@ var _ = g.Describe("[sig-node][apigroup:config.openshift.io][OCPFeatureGate:Dual
45
45
})
46
46
})
47
47
48
-
var_=g.Describe("[sig-etcd][apigroup:config.openshift.io][OCPFeatureGate:DualReplica][Suite:openshift/two-node] Two Node with Fencing pods and podman containers", func() {
48
+
var_=g.Describe("[sig-etcd][apigroup:config.openshift.io][OCPFeatureGate:DualReplica] Two Node with Fencing", func() {
0 commit comments