test(sonarqube): remove 26.5.0 web-layer agent + webapp override to isolate 26.7 search regression (?v=4) - #11
Merged
Conversation
…solate 26.7 search regression (?v=4)
There was a problem hiding this comment.
🔵 Needs a closer look
The change triggers a rollout and brief service outage, requiring human review.
Pull request overview
This diagnostic PR removes SonarQube 26.5 web-layer overrides to isolate a 26.7 project-search regression.
Changes:
- Removes webapp downloads, mounts, and the web javaagent.
- Preserves CE-side plugin configuration.
- Bumps the ArgoCD values cache-buster from
v=3tov=4.
File summaries
| File | Description |
|---|---|
helm/releases/sonarqube/values.yaml |
Removes web-layer plugin artifacts. |
bootstrap/appset-helm.yaml |
Forces ArgoCD to reload updated values. |
Review details
- Files reviewed: 2/2 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This was referenced Sep 14, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Diagnostic experiment: isolate SonarQube 26.7 empty-project-list regression
Root-cause hypothesis: server is 26.7.0 but the community-branch-plugin web-layer artifacts are pinned at 26.5.0 (the
sonar.web.javaAdditionalOpts ... =webjavaagent + thesonarqube-webapp.zipinit-container override that mounts over/opt/sonarqube/web). A 26.5.0 web agent predates the 26.7 UUID /auth_<uuid>shadow-doc search model, sosearch_projectsreturns the righttotalbut an emptycomponents[].This change removes ONLY the web-layer artifacts to test whether the project list populates:
helm/releases/sonarqube/values.yamlextraInitContainers(download-webapp / webapp.zip) blockextraVolumeMounts(/opt/sonarqube/web) blockextraVolumes(webapp emptyDir) blocksonar.web.javaAdditionalOpts ... =websonar.ce.javaAdditionalOpts ... =ce)bootstrap/appset-helm.yamlvalueURLcache-buster?v=3->?v=4(required so ArgoCD re-renders the remote values)Operational impact
?vagain to restore the 26.5.0 web-layer artifacts.Verification
GET /api/components/search_projects(headerGap-Auth: admin) should return a non-emptycomponents[](15 projects) after the pod comes back.