Skip to content

Commit 3666e38

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

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/extended/mco_ocb.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ 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?`,
64-
fakePullSecretName, mcpAndMoscName, fakePullSecretName)
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?`,
64+
fakePullSecretName, mcpAndMoscName, fakePullSecretName, mcpAndMoscName)
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?`,
67-
fakePushSecretName, mcpAndMoscName, fakePushSecretName)
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?`,
67+
fakePushSecretName, mcpAndMoscName, fakePushSecretName, mcpAndMoscName)
6868

6969
fakeBuilderType = "FakeBuilderType"
7070
expectedWrongBuilderTypeMsg = fmt.Sprintf(`Unsupported value: "%s": supported values: "Job"`, 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)