Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions pkg/testsuites/standard_suites.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,22 @@ var staticSuites = []ginkgo.TestSuite{
// etcd's vertical scaling test can take a while for apiserver rollouts to stabilize on the same revision
TestTimeout: 60 * time.Minute,
},
{
Name: "openshift/etcd/disruptive-scaling",
Description: templates.LongDesc(`
This disruptive test suite covers unhappy-path etcd vertical scaling scenarios and is intended to run separately from the standard etcd scaling suite, which assumes stable cluster operation.
Tests in this suite intentionally introduce control plane disruptions, such as stopping the kubelet to render etcd members unhealthy, in order to validate safe and correct scale-down and scale-up behavior.
As a result, this suite is disruptive by design.
`),
Qualifiers: []string{
withStandardEarlyOrLateTests(
`name.contains("[Suite:openshift/etcd/disruptive-scaling]") && name.contains("[Feature:EtcdVerticalScaling]")`,
),
},
// etcd's vertical scaling test can take a while for apiserver rollouts to stabilize on the same revision
TestTimeout: 60 * time.Minute,
ClusterStabilityDuringTest: ginkgo.Disruptive,
},
{
Name: "openshift/etcd/recovery",
Description: templates.LongDesc(`
Expand Down