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
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
} else {
// when running against RC/ released version of gitops
expected_dexVersion = "v2.45.0"
expected_redisVersion = "8.2.3"
expected_redisVersion = "7.2.11"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it expected that the redis version moves backwards?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure why this change was made for 1.21 (assuming we will be updating the redis version for 1.22?), one since CI is passing I am not going to change it. But for interop tests we need the version to match the version used in recent 1.21 z stream which is 7.2.11

}

By("locating pods containing toolchain in openshift-gitops")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package parallel
package sequential

import (
"context"
Expand All @@ -30,7 +30,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/client"
)

var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
var _ = Describe("GitOps Operator Sequential E2E Tests", func() {

Context("1-077_validate_disable_dex_removed", func() {

Expand All @@ -40,7 +40,7 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
)

BeforeEach(func() {
fixture.EnsureParallelCleanSlate()
fixture.EnsureSequentialCleanSlate()

k8sClient, _ = fixtureUtils.GetE2ETestKubeClient()
ctx = context.Background()
Expand Down
Loading