Skip to content

Commit 68d8f23

Browse files
committed
fix: increase timeout
Signed-off-by: Jayendra Parsai <[email protected]>
1 parent abbbdfe commit 68d8f23

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/openshift/e2e/ginkgo/parallel/1-065_validate_redis_ha_anti_affinity_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
7171
Expect(k8sClient.Create(ctx, argoCD)).To(Succeed())
7272

7373
By("waiting for ArgoCD CR to be reconciled and the instance to be ready")
74-
Eventually(argoCD, "5m", "5s").Should(argocdFixture.BeAvailable())
74+
Eventually(argoCD, "10m", "5s").Should(argocdFixture.BeAvailable())
7575

7676
By("verifying redis HA server exists and has the appropriate anti-affinity")
7777
redisHAStatefulSet := &appsv1.StatefulSet{

test/openshift/e2e/ginkgo/parallel/1-067_validate_redis_secure_comm_no_autotls_ha_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
8484
// In BeAvailable() we wait 15 seconds for ArgoCD CR to be reconciled, this SHOULD be enough time.
8585

8686
By("waiting for ArgoCD CR to be reconciled and the instance to be ready")
87-
Eventually(argoCD, "5m", "10s").Should(argocdFixture.BeAvailable())
87+
Eventually(argoCD, "10m", "10s").Should(argocdFixture.BeAvailable())
8888

8989
deploymentsShouldExist := []string{"argocd-redis-ha-haproxy", "argocd-server", "argocd-repo-server"}
9090
for _, deplName := range deploymentsShouldExist {

test/openshift/e2e/ginkgo/parallel/1-069_validate_redis_secure_comm_autotls_ha_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
8181
expectComponentsAreRunning := func() {
8282

8383
By("waiting for ArgoCD CR to be reconciled and the instance to be ready")
84-
Eventually(argoCD, "5m", "5s").Should(argocdFixture.BeAvailable())
84+
Eventually(argoCD, "10m", "5s").Should(argocdFixture.BeAvailable())
8585

8686
deploymentsShouldExist := []string{"argocd-redis-ha-haproxy", "argocd-server", "argocd-repo-server"}
8787
for _, depl := range deploymentsShouldExist {
@@ -111,7 +111,7 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
111111
}
112112

113113
By("waiting for ArgoCD CR to be reconciled and the instance to be ready")
114-
Eventually(argoCD, "5m", "5s").Should(argocdFixture.BeAvailable())
114+
Eventually(argoCD, "10m", "5s").Should(argocdFixture.BeAvailable())
115115

116116
expectComponentsAreRunning()
117117

0 commit comments

Comments
 (0)