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

Update SonarQube to version 10.7 #1309

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
version: ['10.6.0'] # 9.9 = LTS
version: ['10.7.0'] # 9.9 = LTS
edition: ['community', 'developer', 'enterprise']
steps:
-
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

### Changed
- Webhook Proxy maintenance ([#1298](https://github.com/opendevstack/ods-core/pull/1298))
- Update SonarQube to 10.x non LTS ([#1300](https://github.com/opendevstack/ods-core/issues/1300))
- Update SonarQube to 10.6 non LTS ([#1300](https://github.com/opendevstack/ods-core/issues/1300))
- Jenkins maintenance ([#1299](https://github.com/opendevstack/ods-core/pull/1299)) and update java version in Jenkins ([#1295](https://github.com/opendevstack/ods-core/issues/1295))
- Update SonarQube to 10.7 non LTS ([#1298](https://github.com/opendevstack/ods-core/pull/1309))

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions configuration-sample/ods-core.env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ SONAR_EDITION=community
# SonarQube version.
# See Dockerhub https://hub.docker.com/_/sonarqube/tags
# Officially supported is:
# - 10.6.0
SONAR_VERSION=10.6.0
# - 10.7.0
SONAR_VERSION=10.7.0

# SonarQube memory and CPU resources
SONARQUBE_CPU_REQUEST=200m
Expand Down
2 changes: 1 addition & 1 deletion sonarqube/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 1.1.1
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "10.6.0"
appVersion: "10.7.0"
2 changes: 1 addition & 1 deletion sonarqube/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG sonarVersion=10.6.0
ARG sonarVersion=10.7.0
ARG sonarEdition=community

FROM sonarqube:${sonarVersion}-${sonarEdition}
Expand Down
4 changes: 2 additions & 2 deletions sonarqube/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
ODS_CORE_DIR=${SCRIPT_DIR%/*}
ODS_CONFIGURATION_DIR="${ODS_CORE_DIR}/../ods-configuration"

SONAR_VERSION=10.6.0
SONAR_VERSION=10.7.0
SONAR_EDITION="community"

function usage {
printf "Test SonarQube setup.\n\n"
printf "\t-h|--help\t\tPrint usage\n"
printf "\t-v|--verbose\t\tEnable verbose mode\n"
printf "\t-s|--sq-version\t\tSonarQube version, e.g. '10.6.0' (defaults to %s)\n" "${SONAR_VERSION}"
printf "\t-s|--sq-version\t\tSonarQube version, e.g. '10.7.0' (defaults to %s)\n" "${SONAR_VERSION}"
printf "\t-e|--sq-edition\t\tSonarQube edition, e.g. 'community' or 'enterprise' (defaults to %s)\n" "${SONAR_EDITION}"
printf "\t-i|--insecure\t\tAllow insecure server connections when using SSL\n"
printf "\t--verify\t\tSkips setup of local docker container and instead checks existing sonarqube setup based on ods-core.env\n"
Expand Down
Loading