test(sonarqube): restore =web javaagent, keep webapp override removal (E2: isolate webapp as cause, ?v=5) - #13
Merged
Conversation
… (E2: isolate webapp as cause, ?v=5)
There was a problem hiding this comment.
🔵 Needs a closer look
The change affects SonarQube startup behavior and triggers an ArgoCD roll, requiring final human validation.
Pull request overview
Restores SonarQube’s required =web Java agent while keeping the webapp override removed for experiment E2.
Changes:
- Restores the
=webCommunity Branch Plugin agent. - Updates the ArgoCD values cache-buster from
?v=4to?v=5.
File summaries
| File | Description |
|---|---|
helm/releases/sonarqube/values.yaml |
Restores the web-layer Java agent. |
bootstrap/appset-helm.yaml |
Forces ArgoCD to reload the 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 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.
Follow-up to PR #11 (commit 6fb2d5d).
Why: The SonarQube pod is currently CRASH-LOOPING. PR #11 removed both the 26.5.0 web-layer javaagent (=
web) and the 26.5.0 webapp.zip override, but the 26.5.0 Community Branch Plugin JAR is still installed and its web bootstrap hard-requires the=webjavaagent, so the web process dies at startup.What this does: Restores the
=webjavaagent line (stops the crash) while KEEPING the 26.5.0 webapp.zip override removed. The=celine and plugin jar install URL are untouched.Experiment E2: Isolate the webapp override as the search-regression cause. If
search_projectsnow returns 15 components (instead of 0), the 26.5.0 webapp override was the cause of the empty project list.Ops: Bumps the ArgoCD valueURL cache-buster
?v=4->?v=5so ArgoCD re-renders. Triggers an ArgoCD roll (brief outage). Fully reversible.Scope: only
helm/releases/sonarqube/values.yaml+bootstrap/appset-helm.yaml.