Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {

By("Create ArgoCD instance")

argoCD.Spec.ArgoCDAgent.Principal.Image = "quay.io/argoprojlabs/argocd-agent:v0.5.0"
argoCD.Spec.ArgoCDAgent.Principal.Image = "quay.io/argoprojlabs/argocd-agent:v0.7.7"
Expect(k8sClient.Create(ctx, argoCD)).To(Succeed())

By("Verify expected resources are created for principal pod")
Expand All @@ -416,7 +416,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {

container := deploymentFixture.GetTemplateSpecContainerByName(argoCDAgentPrincipalName, *principalDeployment)
Expect(container).ToNot(BeNil())
Expect(container.Image).To(Equal("quay.io/argoprojlabs/argocd-agent:v0.5.0"))
Expect(container.Image).To(Equal("quay.io/argoprojlabs/argocd-agent:v0.7.7"))

By("Verify environment variables are set correctly")

Expand All @@ -435,7 +435,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.7.7"

ac.Spec.ArgoCDAgent.Principal.Namespace.AllowedNamespaces = []string{"agent-managed", "agent-autonomous"}
ac.Spec.ArgoCDAgent.Principal.Namespace.EnableNamespaceCreate = ptr.To(true)
Expand Down Expand Up @@ -482,7 +482,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.7.7"
}, "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 @@ -372,7 +372,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {

By("Create ArgoCD instance")

argoCD.Spec.ArgoCDAgent.Agent.Image = "quay.io/argoprojlabs/argocd-agent:v0.5.0"
argoCD.Spec.ArgoCDAgent.Agent.Image = "quay.io/argoprojlabs/argocd-agent:v0.7.7"
Expect(k8sClient.Create(ctx, argoCD)).To(Succeed())

By("Verify expected resources are created for agent pod")
Expand All @@ -383,7 +383,7 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {

container := deploymentFixture.GetTemplateSpecContainerByName(argoCDAgentAgentName, *agentDeployment)
Expect(container).ToNot(BeNil())
Expect(container.Image).To(Equal("quay.io/argoprojlabs/argocd-agent:v0.5.0"))
Expect(container.Image).To(Equal("quay.io/argoprojlabs/argocd-agent:v0.7.7"))

By("Verify environment variables are set correctly")

Expand All @@ -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.7.7"

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.7.7"
}, "120s", "5s").Should(BeTrue(), "Agent deployment should have the updated image")

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