Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update --k8spodwaittimeout=240000 and and --k8spodreadytimeout=240000 in tests #2942

Merged
merged 3 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions test/e2e/e2e-upgrade-channel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ describe('Upgrade channel test', () => {
`--chenamespace=${EclipseChe.NAMESPACE}`,
'--che-operator-cr-patch-yaml=test/e2e/resources/minikube-checluster-patch.yaml',
'--telemetry=off',
'--k8spodwaittimeout=120000',
'--k8spodreadytimeout=120000',
'--k8spodwaittimeout=240000',
'--k8spodreadytimeout=240000',
])

await helper.waitForCheServerImageTag(helper.getNewVersion(), TIMEOUT_MS)
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/e2e-upgrade-version.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('Test Che upgrade', () => {
it(`Deploy Che using operator installer and self signed certificates`, async () => {
// uses installed chectl (from a stable channel)
// see github workflow
let deployCommand = `chectl server:deploy --batch --platform=${PLATFORM} --chenamespace=${NAMESPACE} --telemetry=off --k8spodwaittimeout=120000 --k8spodreadytimeout=120000`
let deployCommand = `chectl server:deploy --batch --platform=${PLATFORM} --chenamespace=${NAMESPACE} --telemetry=off --k8spodwaittimeout=240000 --k8spodreadytimeout=240000`
if (PLATFORM === 'minikube') {
deployCommand += ' --che-operator-cr-patch-yaml=test/e2e/resources/minikube-checluster-patch.yaml'
}
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const binChectl = E2eHelper.getChectlBinaries()
const PLATFORM = process.env.PLATFORM || ''

function getDeployCommand(): string {
let command = `${binChectl} server:deploy --batch --platform=${PLATFORM} --chenamespace=${EclipseChe.NAMESPACE} --telemetry=off --k8spodwaittimeout=120000 --k8spodreadytimeout=120000`
let command = `${binChectl} server:deploy --batch --platform=${PLATFORM} --chenamespace=${EclipseChe.NAMESPACE} --telemetry=off --k8spodwaittimeout=240000 --k8spodreadytimeout=240000`
if (PLATFORM === 'minikube') {
command += ' --che-operator-cr-patch-yaml=test/e2e/resources/minikube-checluster-patch.yaml'
}
Expand Down
Loading