Skip to content

Commit 1f57ea3

Browse files
test bumping pod ready timeout
1 parent 453b637 commit 1f57ea3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/extended/mco_ocb.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ var _ = g.Describe("[sig-mco][Suite:openshift/machine-config-operator/disruptive
6060
pullSecret = NewSecret(oc.AsAdmin(), "openshift-config", "pull-secret")
6161

6262
fakePullSecretName = "fake-pull-secret"
63-
expectedWrongPullSecretMsg = fmt.Sprintf(`could not validate baseImagePullSecret "%s" for MachineOSConfig %s: secret %s is not found. Did you use the right secret name?`,
63+
expectedWrongPullSecretMsg = fmt.Sprintf(`could not validate baseImagePullSecret "%s" for MachineOSConfig %s: secret %s from %s is not found. Did you use the right secret name?`,
6464
fakePullSecretName, mcpAndMoscName, fakePullSecretName)
6565
fakePushSecretName = "fake-push-secret"
66-
expectedWrongPushSecretMsg = fmt.Sprintf(`could not validate renderedImagePushSecret "%s" for MachineOSConfig %s: secret %s is not found. Did you use the right secret name?`,
66+
expectedWrongPushSecretMsg = fmt.Sprintf(`could not validate renderedImagePushSecret "%s" for MachineOSConfig %s: secret %s from %s is not found. Did you use the right secret name?`,
6767
fakePushSecretName, mcpAndMoscName, fakePushSecretName)
6868

6969
fakeBuilderType = "FakeBuilderType"

test/extended/util/pods.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,5 @@ func AssertAllPodsToBeReadyWithPollerParams(oc *CLI, namespace string, interval,
118118

119119
// AssertAllPodsToBeReady assert all pods in NS are in ready state until timeout in a given namespace
120120
func AssertAllPodsToBeReady(oc *CLI, namespace string) {
121-
AssertAllPodsToBeReadyWithPollerParams(oc, namespace, 10*time.Second, 4*time.Minute)
121+
AssertAllPodsToBeReadyWithPollerParams(oc, namespace, 10*time.Second, 5*time.Minute)
122122
}

0 commit comments

Comments
 (0)