@@ -724,13 +724,13 @@ func createCatalogCheckResources(operatorCatalog *catalogd.Catalog, catalogDInfo
724
724
Eventually (func (g Gomega ) {
725
725
err = validateCatalogUnpacking (operatorCatalog )
726
726
g .Expect (err ).ToNot (HaveOccurred ())
727
- }, 60 * time .Second , 1 ).Should (Succeed ())
727
+ }, 2 * time .Minute , 1 ).Should (Succeed ())
728
728
729
729
// checking if the packages are created
730
730
Eventually (func (g Gomega ) {
731
731
err = validatePackageCreation (operatorCatalog , catalogDInfo .operatorName )
732
732
g .Expect (err ).ToNot (HaveOccurred ())
733
- }, 60 * time .Second , 1 ).Should (Succeed ())
733
+ }, 2 * time .Minute , 1 ).Should (Succeed ())
734
734
735
735
// checking if the bundle metadatas are created
736
736
By ("Eventually checking if bundle metadata is created" )
@@ -747,19 +747,19 @@ func checkOperatorOperationsSuccess(operator *operatorv1alpha1.Operator, pkgName
747
747
Eventually (func (g Gomega ) {
748
748
err := validateResolutionAndBundlePath (operator )
749
749
g .Expect (err ).ToNot (HaveOccurred ())
750
- }, 60 * time .Second , 1 ).Should (Succeed ())
750
+ }, 2 * time .Minute , 1 ).Should (Succeed ())
751
751
752
752
// checking for a successful operator installation
753
753
Eventually (func (g Gomega ) {
754
754
err := validateOperatorInstallation (operator , opVersion )
755
755
g .Expect (err ).ToNot (HaveOccurred ())
756
- }, 60 * time .Second , 1 ).Should (Succeed ())
756
+ }, 2 * time .Minute , 1 ).Should (Succeed ())
757
757
758
758
// checking for a successful package installation
759
759
Eventually (func (g Gomega ) {
760
760
err := validatePackageInstallation (operator )
761
761
g .Expect (err ).ToNot (HaveOccurred ())
762
- }, 60 * time .Second , 1 ).Should (Succeed ())
762
+ }, 2 * time .Minute , 1 ).Should (Succeed ())
763
763
764
764
// verifying the presence of relevant manifest from the bundle on cluster
765
765
Eventually (func (g Gomega ) {
0 commit comments