Skip to content

Commit e9b406d

Browse files
committed
fix operator image and timeout
1 parent c959f7c commit e9b406d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ADMIN_CONSOLE_KURL_PROXY_IMAGE_OVERRIDE = kotsadm/kurl-proxy:v2024.7.8-ec8-night
1010
EMBEDDED_OPERATOR_CHART_VERSION = 0.39.0-build.3
1111
EMBEDDED_OPERATOR_BINARY_URL_OVERRIDE =
1212
EMBEDDED_OPERATOR_UTILS_IMAGE = busybox:1.36.1
13-
EMBEDDED_CLUSTER_OPERATOR_IMAGE_OVERRIDE = ttl.sh/embedded-cluster-operator-image:dev-a11a481
13+
EMBEDDED_CLUSTER_OPERATOR_IMAGE_OVERRIDE = ttl.sh/sgalsaleh/embedded-cluster-operator-image:24h
1414
OPENEBS_CHART_VERSION = 4.1.0
1515
OPENEBS_UTILS_VERSION = 4.1.0
1616
SEAWEEDFS_CHART_VERSION = 4.0.0

e2e/playwright/tests/deploy-upgrade/test.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ test('deploy upgrade', async ({ page }) => {
3333
}
3434

3535
await expect(page.locator('.available-update-row', { hasText: process.env.APP_UPGRADE_VERSION })).not.toBeVisible({ timeout: 10 * 1000 });
36-
await expect(page.locator('.VersionHistoryRow', { hasText: process.env.APP_UPGRADE_VERSION })).toContainText('Currently deployed version', { timeout: 30 * 1000 });
36+
await expect(page.locator('.VersionHistoryRow', { hasText: process.env.APP_UPGRADE_VERSION })).toContainText('Deploying');
37+
await expect(page.locator('.VersionHistoryRow', { hasText: process.env.APP_UPGRADE_VERSION })).toContainText('Currently deployed version', { timeout: 90 * 1000 });
3738
await page.getByRole('link', { name: 'Dashboard', exact: true }).click();
3839
await expect(page.locator('.VersionCard-content--wrapper')).toContainText(process.env.APP_UPGRADE_VERSION);
3940
await expect(page.locator('#app')).toContainText('Currently deployed version');

0 commit comments

Comments
 (0)