Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adejanovski committed Dec 15, 2023
1 parent b32969f commit 0755b57
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/kind_e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
- CreateSingleReaperWStargateAndHTTP
- CreateReaperAndDatacenter
- CreateSingleMedusaJob
- CreateMultiDcSingleMedusaJob
- CreateSingleDseMedusaJob
- ConfigControllerRestarts
# TODO: these e2e tests started breaking after new client certificates were added. Needs fixing.
Expand Down
2 changes: 1 addition & 1 deletion pkg/medusa/reconcile.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const (
DefaultMedusaImageRepository = "k8ssandra"
DefaultMedusaImageName = "medusa"
// DefaultMedusaVersion pins to an unreleased version to be compatible. will revert back to a release version once we have it
DefaultMedusaVersion = "4ddaeeb4"
DefaultMedusaVersion = "2e5723d-tmp"
DefaultMedusaPort = 50051
DefaultProbeInitialDelay = 10
DefaultProbeTimeout = 1
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/medusa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func createMultiMedusaJob(t *testing.T, ctx context.Context, namespace string, f
}
}

func createSingleMedusaJobMultiCluster(t *testing.T, ctx context.Context, namespace string, f *framework.E2eFramework) {
func createMultiDcSingleMedusaJob(t *testing.T, ctx context.Context, namespace string, f *framework.E2eFramework) {
require := require.New(t)
cluster2Name := "cluster2"
kcKey := framework.ClusterKey{K8sContext: "kind-k8ssandra-0", NamespacedName: types.NamespacedName{Namespace: namespace, Name: cluster2Name}}
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ func TestOperator(t *testing.T) {
doCassandraDatacenterCleanup: false,
installMinio: true,
}))
t.Run("CreateSingleMedusaJobMultiCluster", e2eTest(ctx, &e2eTestOpts{
testFunc: createSingleMedusaJobMultiCluster,
t.Run("CreateMultiDcSingleMedusaJob", e2eTest(ctx, &e2eTestOpts{
testFunc: createMultiDcSingleMedusaJob,
fixture: framework.NewTestFixture("single-dc-multi-cluster-medusa", controlPlane),
skipK8ssandraClusterCleanup: false,
doCassandraDatacenterCleanup: false,
Expand Down

0 comments on commit 0755b57

Please sign in to comment.