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

Miawong/sc 116932/improved disaster recovery for ec ux #5070

Merged
merged 22 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from 20 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
3 changes: 2 additions & 1 deletion e2e/playwright/tests/@smoke-test/test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ test("smoke test", async ({ page }) => {
.click();
await page.locator(".SnapshotRow--wrapper").click();
await expect(page.locator("#app")).toContainText("Snapshot timeline");
await page.getByText("Infrastructure", { exact: true }).click();
await page.getByText("View logs").click();
await expect(page.locator(".view-lines")).toContainText("level=info");
await page.getByRole("button", { name: "Ok, got it!" }).click();
Expand Down Expand Up @@ -344,4 +345,4 @@ const validateDeployLogs = async (page, expect) => {
await page.getByText("applyStdout").click();
await expect(page.locator(".view-lines")).toContainText("created");
await page.getByRole("button", { name: "Ok, got it!" }).click();
};
};
1 change: 1 addition & 0 deletions pkg/kotsadmsnapshot/backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,7 @@ func ParseVeleroBackup(ctx context.Context, veleroBackup velerov1.Backup) (*type
return &backup, nil
}


miaawong marked this conversation as resolved.
Show resolved Hide resolved
func ListInstanceBackups(ctx context.Context, kotsadmNamespace string) ([]*types.Backup, error) {
cfg, err := k8sutil.GetClusterConfig()
if err != nil {
Expand Down
Loading
Loading