@@ -85,20 +85,25 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
8585 It ("verifies that toolchain versions have the expected values" , func () {
8686
8787 // These variables need to be maintained according to the component matrix: https://spaces.redhat.com/display/GITOPS/GitOps+Component+Matrix
88- expected_kustomizeVersion := "v5.7.1"
89- expected_helmVersion := "v3.18.6"
90- expected_argocdVersion := "v3.1.16"
91-
88+ var expected_kustomizeVersion string
89+ var expected_helmVersion string
90+ var expected_argocdVersion string
9291 var expected_dexVersion string
9392 var expected_redisVersion string
9493
9594 if os .Getenv ("CI" ) == "prow" {
9695 // when running against openshift-ci
96+ expected_kustomizeVersion = "v5.7.0"
97+ expected_helmVersion = "v3.18.4"
98+ expected_argocdVersion = "v3.1.11"
9799 expected_dexVersion = "v2.43.0"
98100 expected_redisVersion = "7.2.11"
99101
100102 } else {
101103 // when running against RC/ released version of gitops
104+ expected_kustomizeVersion = "v5.7.1"
105+ expected_helmVersion = "v3.18.6"
106+ expected_argocdVersion = "v3.1.16"
102107 expected_dexVersion = "v2.43.1"
103108 expected_redisVersion = "7.2.11"
104109 }
0 commit comments