Skip to content

Commit 3449b6a

Browse files
authored
update agent image (#1132)
Signed-off-by: Varsha B <[email protected]>
1 parent dbd8ee9 commit 3449b6a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

test/openshift/e2e/ginkgo/fixture/agent/fixture.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ func VerifyExpectedResourcesExist(params VerifyExpectedResourcesExistParams) {
323323
Name: params.SecretNames.RedisInitialPasswordSecretName,
324324
Namespace: params.Namespace.Name,
325325
},
326-
}, "30s", "2s").Should(k8sFixture.ExistByName())
326+
}, "60s", "2s").Should(k8sFixture.ExistByName())
327327
}
328328

329329
Eventually(params.ServiceAccount).Should(k8sFixture.ExistByName())

test/openshift/e2e/ginkgo/sequential/1-051_validate_argocd_agent_principal_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {
442442
ac.Spec.ArgoCDAgent.Principal.LogFormat = "json"
443443
ac.Spec.ArgoCDAgent.Principal.Server.KeepAliveMinInterval = "60s"
444444
ac.Spec.ArgoCDAgent.Principal.Server.EnableWebSocket = ptr.To(true)
445-
ac.Spec.ArgoCDAgent.Principal.Image = "quay.io/argoprojlabs/argocd-agent:v0.5.1"
445+
ac.Spec.ArgoCDAgent.Principal.Image = "quay.io/argoprojlabs/argocd-agent:v0.8.1"
446446

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

495495
By("verify that deployment is in Ready state")

test/openshift/e2e/ginkgo/sequential/1-052_validate_argocd_agent_agent_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {
400400

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

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

436436
By("Verify environment variables are updated correctly")

0 commit comments

Comments
 (0)