Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion test/openshift/e2e/ginkgo/fixture/agent/fixture.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ func VerifyExpectedResourcesExist(params VerifyExpectedResourcesExistParams) {
Name: params.SecretNames.RedisInitialPasswordSecretName,
Namespace: params.Namespace.Name,
},
}, "30s", "2s").Should(k8sFixture.ExistByName())
}, "60s", "2s").Should(k8sFixture.ExistByName())
}

Eventually(params.ServiceAccount).Should(k8sFixture.ExistByName())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {
ac.Spec.ArgoCDAgent.Principal.LogFormat = "json"
ac.Spec.ArgoCDAgent.Principal.Server.KeepAliveMinInterval = "60s"
ac.Spec.ArgoCDAgent.Principal.Server.EnableWebSocket = ptr.To(true)
ac.Spec.ArgoCDAgent.Principal.Image = "quay.io/argoprojlabs/argocd-agent:v0.5.1"
ac.Spec.ArgoCDAgent.Principal.Image = "quay.io/argoprojlabs/argocd-agent:v0.8.1"

ac.Spec.ArgoCDAgent.Principal.Namespace.AllowedNamespaces = []string{"agent-managed", "agent-autonomous"}
ac.Spec.ArgoCDAgent.Principal.Namespace.EnableNamespaceCreate = ptr.To(true)
Expand Down Expand Up @@ -489,7 +489,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {
if container == nil {
return false
}
return container.Image == "quay.io/argoprojlabs/argocd-agent:v0.5.1"
return container.Image == "quay.io/argoprojlabs/argocd-agent:v0.8.1"
}, "120s", "5s").Should(BeTrue(), "Principal deployment should have the updated image")

By("verify that deployment is in Ready state")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {

ac.Spec.ArgoCDAgent.Agent.LogLevel = "trace"
ac.Spec.ArgoCDAgent.Agent.LogFormat = "json"
ac.Spec.ArgoCDAgent.Agent.Image = "quay.io/argoprojlabs/argocd-agent:v0.5.1"
ac.Spec.ArgoCDAgent.Agent.Image = "quay.io/argoprojlabs/argocd-agent:v0.8.1"

ac.Spec.ArgoCDAgent.Agent.Client.KeepAliveInterval = "60s"
ac.Spec.ArgoCDAgent.Agent.Client.EnableWebSocket = ptr.To(true)
Expand Down Expand Up @@ -430,7 +430,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {
if container == nil {
return false
}
return container.Image == "quay.io/argoprojlabs/argocd-agent:v0.5.1"
return container.Image == "quay.io/argoprojlabs/argocd-agent:v0.8.1"
}, "120s", "5s").Should(BeTrue(), "Agent deployment should have the updated image")

By("Verify environment variables are updated correctly")
Expand Down
Loading