Skip to content

Commit 5312142

Browse files
Merge pull request #29452 from pperiyasamy/fix-nmstate-failures
SDN-4168: Fix for nmstate deployment related failures
2 parents 870e9a9 + e2e54ef commit 5312142

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/extended/networking/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ func deployNmstateHandler(oc *exutil.CLI) error {
721721
}
722722

723723
func ensureNmstateHandlerRunning(oc *exutil.CLI) error {
724-
err := wait.PollUntilContextTimeout(context.Background(), poll, 2*time.Minute, true,
724+
err := wait.PollUntilContextTimeout(context.Background(), poll, 5*time.Minute, true,
725725
func(ctx context.Context) (bool, error) {
726726
// Ensure nmstate handler is running.
727727
return isDaemonSetRunning(oc, nmstateNamespace, "nmstate-handler")

test/extended/util/managed_services.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ var ManagedServiceNamespaces = sets.New[string](
3535
"openshift-managed-upgrade-operator",
3636
"openshift-marketplace",
3737
"openshift-must-gather-operator",
38+
"openshift-nmstate",
3839
"openshift-observability-operator",
3940
"openshift-ocm-agent-operator",
4041
"openshift-operators-redhat",

0 commit comments

Comments
 (0)