Skip to content

Commit

Permalink
fix(manager): switch sanity tests to run on multiDC cluster
Browse files Browse the repository at this point in the history
Sanity tests on debian11, ubuntu22 and ubuntu24 switched to be run on
multiDC cluster.

This configuration was already in place some time ago before issue
scylladb/scylla-manager#3871 was found.
After that Manager jobs were switched to run only on singleDC cluster
(scylladb#7435).

And since the fix for Manager is ready now, multiDC setup can be brought
back.
  • Loading branch information
mikliapko committed Oct 18, 2024
1 parent 4b19d2a commit e1b7f34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions jenkins-pipelines/manager/debian11-manager-sanity.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ def lib = library identifier: 'sct@snapshot', retriever: legacySCM(scm)

managerPipeline(
backend: 'aws',
region: 'us-east-1',
region: '''["us-east-1", "us-west-2"]''',
test_name: 'mgmt_cli_test.MgmtCliTest.test_manager_sanity',
test_config: '''["test-cases/manager/manager-regression-singleDC-set-distro.yaml", "configurations/manager/debian11.yaml"]''',
test_config: '''["test-cases/manager/manager-regression-multiDC-set-distro.yaml", "configurations/manager/debian11.yaml"]''',

post_behavior_db_nodes: 'destroy',
post_behavior_loader_nodes: 'destroy',
Expand Down
4 changes: 2 additions & 2 deletions jenkins-pipelines/manager/ubuntu22-manager-sanity.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ def lib = library identifier: 'sct@snapshot', retriever: legacySCM(scm)

managerPipeline(
backend: 'aws',
region: 'us-east-1',
region: '''["us-east-1", "us-west-2"]''',
test_name: 'mgmt_cli_test.MgmtCliTest.test_manager_sanity',
test_config: 'test-cases/manager/manager-regression-singleDC-set-distro.yaml',
test_config: 'test-cases/manager/manager-regression-multiDC-set-distro.yaml',

post_behavior_db_nodes: 'destroy',
post_behavior_loader_nodes: 'destroy',
Expand Down
4 changes: 2 additions & 2 deletions jenkins-pipelines/manager/ubuntu24-manager-sanity.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ def lib = library identifier: 'sct@snapshot', retriever: legacySCM(scm)

managerPipeline(
backend: 'aws',
region: 'us-east-1',
region: '''["us-east-1", "us-west-2"]''',
test_name: 'mgmt_cli_test.MgmtCliTest.test_manager_sanity',
test_config: '''["test-cases/manager/manager-regression-singleDC-set-distro.yaml", "configurations/manager/ubuntu24.yaml"]''',
test_config: '''["test-cases/manager/manager-regression-multiDC-set-distro.yaml", "configurations/manager/ubuntu24.yaml"]''',

post_behavior_db_nodes: 'destroy',
post_behavior_loader_nodes: 'destroy',
Expand Down

0 comments on commit e1b7f34

Please sign in to comment.