-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(manager): add installation test for Rocky9 distribution
Added: - configuration file for Rocky9 distro; - jenkinsfile to run Manager installation test on Rocky9 ref: scylladb/scylla-manager#3854
- Loading branch information
1 parent
3418fb9
commit 3c880d3
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
ami_id_monitor: 'ami-011ef2017d41cb239' # Rocky Linux 8 (Official) image, region - us-east-1 | ||
ami_monitor_user: 'rocky' | ||
monitor_branch: 'branch-4.7' # Pass it as debian image is not the formal monitor image | ||
monitor_branch: 'branch-4.7' # Pass it as rocky image is not the formal monitor image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ami_id_monitor: 'ami-09fb459fad4613d55' # Rocky Linux 9 (Official) image, region - us-east-1 | ||
ami_monitor_user: 'rocky' | ||
monitor_branch: 'branch-4.7' # Pass it as rocky image is not the formal monitor image |
15 changes: 15 additions & 0 deletions
15
jenkins-pipelines/manager/rocky9-manager-install.jenkinsfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!groovy | ||
|
||
// trick from https://github.com/jenkinsci/workflow-cps-global-lib-plugin/pull/43 | ||
def lib = library identifier: 'sct@snapshot', retriever: legacySCM(scm) | ||
|
||
managerPipeline( | ||
backend: 'aws', | ||
region: 'us-east-1', | ||
test_name: 'mgmt_cli_test.MgmtCliTest.test_manager_installed_and_functional', | ||
test_config: '''["test-cases/manager/manager-installation-set-distro.yaml", "configurations/manager/rocky9.yaml"]''', | ||
|
||
post_behavior_db_nodes: 'destroy', | ||
post_behavior_loader_nodes: 'destroy', | ||
post_behavior_monitor_nodes: 'destroy', | ||
) |