Skip to content

Commit 331465e

Browse files
committed
Exclude ephemeral cni-sysctl-allowlist-ds from maxUnavailable/maxSurge check
This test started failing more often when we hardcoded the origin random seed. With the new deterministic ordering, this test is now more likely to run early enough to observe the ephemeral openshift-multus/cni-sysctl-allowlist-ds before it is deleted. Is pruned shortly after creation, so later runs of the same test pass. Because this DS is transient and not part of the steady-state cluster, it should be excluded from the invariant check to avoid non-deterministic failures.
1 parent b36acb8 commit 331465e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/extended/operators/daemon_set.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ var _ = g.Describe("[sig-arch] Managed cluster", func() {
6868
// Managed service exceptions https://issues.redhat.com/browse/OSD-26323
6969
"openshift-security/splunkforwarder-ds",
7070
"openshift-validation-webhook/validation-webhook",
71+
72+
// This is a temporary daemon set used to deploy a config to nodes, and then
73+
// it is deleted later.
74+
"openshift-multus/cni-sysctl-allowlist-ds",
7175
)
7276

7377
var debug []string

0 commit comments

Comments
 (0)