Skip to content

Commit 8a4ef2a

Browse files
Merge pull request #30390 from KeerthanaAP/upgrade_duration
OCPBUGS-63201: Updated the upgrade duration limit to 100 minutes for ppc64le
2 parents f06eec0 + 6950dd9 commit 8a4ef2a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/e2e/upgrade/upgrade.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,9 +404,8 @@ func clusterUpgrade(f *framework.Framework, c configv1client.Interface, dc dynam
404404
// to be 30 minutes longer. https://issues.redhat.com/browse/OCPBUGS-13059
405405
upgradeDurationLimit = 130 * time.Minute
406406
case platformType.Architecture == platformidentification.ArchitecturePPC64le:
407-
// ppc appears to take just over 75 minutes, let's lock it into that value, so we don't
408-
// get worse.
409-
upgradeDurationLimit = 80 * time.Minute
407+
// ppc takes slightly more than 80 minutes. https://issues.redhat.com/browse/OCPBUGS-63201
408+
upgradeDurationLimit = 100 * time.Minute
410409
case infra.Status.InfrastructureTopology == configv1.SingleReplicaTopologyMode:
411410
// single node takes a lot less since there's one node
412411
upgradeDurationLimit = 65 * time.Minute

0 commit comments

Comments
 (0)