Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bitbucket 9 0 0 support #1506

Merged
merged 3 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This repository contains Taurus scripts for performance testing of Atlassian Dat
* Confluence [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `8.5.9` and `7.19.22`

* Supported Bitbucket Server versions:
* Bitbucket Server [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `8.19.4` and `8.9.14`
* Bitbucket Server [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `9.0.0` and `8.19.4` and `8.9.14`
Copy link
Collaborator

Choose a reason for hiding this comment

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

8.19.4, 8.9.14 and 9.0.0 Platform release.


* Supported Crowd versions:
* Crowd [release notes](https://confluence.atlassian.com/crowd/crowd-release-notes-199094.html): `6.0.0`
Expand Down
2 changes: 2 additions & 0 deletions app/util/api/bitbucket_clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,13 @@ def get_bitbucket_nodes_count(self):
nodes_count = "Server"
return nodes_count

@retry()
def get_bitbucket_system_page(self):
response = self.get(f"{self.host}/plugins/servlet/troubleshooting/view/system-info/view",
error_msg="Could not get system page info")
return response

@retry()
def get_bitbucket_repo_count(self):
repos_count = None
page = self.get_bitbucket_system_page()
Expand Down
45 changes: 45 additions & 0 deletions app/util/k8s/dcapt-snapshots.json
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,51 @@
]
}
]
},
{
"version": "9.0.0",
"data": [
{
"type": "ebs",
"size": "large",
"snapshots": [
{
"us-east-2": "snap-0ac664e91507f0e9d",
"us-east-1": "snap-0961da714ef84fa67"
}
]
},
{
"type": "rds",
"size": "large",
"snapshots": [
{
"us-east-2": "arn:aws:rds:us-east-2:585036043680:snapshot:dcapt-bitbucket-9-0-0",
"us-east-1": "arn:aws:rds:us-east-1:585036043680:snapshot:dcapt-bitbucket-9-0-0"
}
]
},
{
"type": "ebs",
"size": "small",
"snapshots": [
{
"us-east-2": "snap-04268cd0703e449ae",
"us-east-1": "snap-0e7c7b549b51011ed"
}
]
},
{
"type": "rds",
"size": "small",
"snapshots": [
{
"us-east-2": "arn:aws:rds:us-east-2:585036043680:snapshot:dcapt-bitbucket-small-9-0-0",
"us-east-1": "arn:aws:rds:us-east-1:585036043680:snapshot:dcapt-bitbucket-small-9-0-0"
}
]
}
]
}
]
},
Expand Down