Skip to content

Commit

Permalink
disable backupImages for GCP provider
Browse files Browse the repository at this point in the history
  • Loading branch information
kaovilai committed Jul 11, 2022
1 parent 634f8dd commit a166c88
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/e2e/backup_restore_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ var _ = Describe("AWS backup restore tests", func() {
Expect(err).NotTo(HaveOccurred())

updateLastInstallingNamespace(dpaCR.Namespace)
if provider == "gcp" {
// disable image backup for GCP before https://github.com/openshift/openshift-velero-plugin/pull/151 is merged
dpaCR.CustomResource.Spec.BackupImages = pointer.Bool(false)
}
err = dpaCR.CreateOrUpdate(&dpaCR.CustomResource.Spec)
Expect(err).NotTo(HaveOccurred())

Expand Down

0 comments on commit a166c88

Please sign in to comment.