diff --git a/test/operator-framework-e2e/operator_framework_test.go b/test/operator-framework-e2e/operator_framework_test.go index 0ec22df27..229c87bd1 100644 --- a/test/operator-framework-e2e/operator_framework_test.go +++ b/test/operator-framework-e2e/operator_framework_test.go @@ -724,13 +724,13 @@ func createCatalogCheckResources(operatorCatalog *catalogd.Catalog, catalogDInfo Eventually(func(g Gomega) { err = validateCatalogUnpacking(operatorCatalog) g.Expect(err).ToNot(HaveOccurred()) - }, 60*time.Second, 1).Should(Succeed()) + }, 2*time.Minute, 1).Should(Succeed()) // checking if the packages are created Eventually(func(g Gomega) { err = validatePackageCreation(operatorCatalog, catalogDInfo.operatorName) g.Expect(err).ToNot(HaveOccurred()) - }, 60*time.Second, 1).Should(Succeed()) + }, 2*time.Minute, 1).Should(Succeed()) // checking if the bundle metadatas are created By("Eventually checking if bundle metadata is created") @@ -747,19 +747,19 @@ func checkOperatorOperationsSuccess(operator *operatorv1alpha1.Operator, pkgName Eventually(func(g Gomega) { err := validateResolutionAndBundlePath(operator) g.Expect(err).ToNot(HaveOccurred()) - }, 60*time.Second, 1).Should(Succeed()) + }, 2*time.Minute, 1).Should(Succeed()) // checking for a successful operator installation Eventually(func(g Gomega) { err := validateOperatorInstallation(operator, opVersion) g.Expect(err).ToNot(HaveOccurred()) - }, 60*time.Second, 1).Should(Succeed()) + }, 2*time.Minute, 1).Should(Succeed()) // checking for a successful package installation Eventually(func(g Gomega) { err := validatePackageInstallation(operator) g.Expect(err).ToNot(HaveOccurred()) - }, 60*time.Second, 1).Should(Succeed()) + }, 2*time.Minute, 1).Should(Succeed()) // verifying the presence of relevant manifest from the bundle on cluster Eventually(func(g Gomega) {