Skip to content
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
72e92c8
Improve etcd recovery tests for dual-replica
clobrano Jul 14, 2025
a8db197
OCPEDGE-1484: [TNF] Added kubelet failure tests in two-node recovery …
dhensel-rh Oct 17, 2025
baf1ea1
Fixing tab vs. space in common.go file
dhensel-rh Oct 27, 2025
fbd1f26
improving logging
dhensel-rh Nov 12, 2025
399994d
OCPEDGE-1484: [TNF] Added kubelet failure tests in two-node recovery …
dhensel-rh Oct 17, 2025
8131f4c
improving logging
dhensel-rh Nov 12, 2025
11342e1
Fix build errors and enhance kubelet service detection
dhensel-rh Nov 24, 2025
9527b8a
Fix monitoring operator timeout by using essential operator validation
dhensel-rh Nov 25, 2025
2f3b1e1
Fix constraint ID parsing to extract actual ID instead of 'resource'
dhensel-rh Nov 25, 2025
89f5d04
Add extensive debug logging to constraint ID parsing
dhensel-rh Dec 1, 2025
9634130
Add constraint ID validation to prevent invalid results
dhensel-rh Dec 1, 2025
2968671
Fix make update issues and enhance constraint ID parsing
dhensel-rh Dec 1, 2025
f7054e9
Enhance IsServiceRunning with comprehensive debugging and multiple fa…
dhensel-rh Dec 1, 2025
642e661
Simplify IsServiceRunning to use only primary systemctl is-active check
dhensel-rh Dec 1, 2025
45feb67
changes to common.go
dhensel-rh Dec 1, 2025
6f3e7f2
Remove tnf_recovery.go and revisionbump README.md
dhensel-rh Dec 1, 2025
b0374c0
removing etcd_status_test.go
dhensel-rh Dec 1, 2025
d453998
Fix missing constants in tnf_kubelet_disruption.go
dhensel-rh Dec 1, 2025
56973f6
add change to see if kubelet is active
dhensel-rh Dec 2, 2025
66227e1
revert changes
dhensel-rh Dec 2, 2025
8159316
removing extra file
dhensel-rh Dec 2, 2025
31d0519
adding file back
dhensel-rh Dec 2, 2025
03a414a
removing some constants that are not needed
dhensel-rh Dec 4, 2025
9688854
change code to use ban instead of contraintId
dhensel-rh Dec 8, 2025
acb113a
change to fix kubelet test from immediately failing
dhensel-rh Dec 8, 2025
7d371c7
addressing check nodeReady state from Egli
dhensel-rh Dec 8, 2025
41ac7c2
Adding changes from Egli feedback and improving logging
dhensel-rh Dec 10, 2025
692751b
changing how I interact with nodes
dhensel-rh Dec 11, 2025
dce6692
cleaning up redundant logging
dhensel-rh Dec 11, 2025
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
Prev Previous commit
Next Next commit
removing some constants that are not needed
  • Loading branch information
dhensel-rh committed Dec 4, 2025
commit 03a414af033faddccf9ee638037eebf0f15af83e
11 changes: 4 additions & 7 deletions test/extended/two_node/tnf_kubelet_disruption.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,10 @@ import (
)

const (
kubeletDisruptionTimeout = 10 * time.Minute // Timeout for kubelet disruption scenarios
kubeletRestoreTimeout = 5 * time.Minute // Time to wait for kubelet service restore
kubeletPollInterval = 10 * time.Second // Poll interval for kubelet status checks
kubeletGracePeriod = 30 * time.Second // Grace period for kubelet to start/stop
etcdOperatorIsHealthyTimeout = 10 * time.Minute // Timeout for etcd operator health checks
nodeIsHealthyTimeout = 5 * time.Minute // Timeout for node health checks
pollInterval = 10 * time.Second // General polling interval
kubeletDisruptionTimeout = 10 * time.Minute // Timeout for kubelet disruption scenarios
kubeletRestoreTimeout = 5 * time.Minute // Time to wait for kubelet service restore
kubeletPollInterval = 10 * time.Second // Poll interval for kubelet status checks
kubeletGracePeriod = 30 * time.Second // Grace period for kubelet to start/stop
)

var _ = g.Describe("[sig-etcd][apigroup:config.openshift.io][OCPFeatureGate:DualReplica][Suite:openshift/two-node][Serial][Slow][Disruptive] Two Node with Fencing cluster", func() {
Expand Down