📖 Document environment variables for configuring the extension - #1466
Conversation
|
Warning Review limit reached
Next review available in: 39 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
95cc07d to
c10cd86
Compare
Add an Environment Variables section to the extension README documenting all supported env vars for pre-configuring the extension in managed environments like Dev Spaces. Covers: - Hub configuration (HUB_URL, HUB_USERNAME, HUB_PASSWORD, etc.) - Analyzer binary download (ANALYZER_FALLBACK_BASE_URL) - TLS and certificates (CA_BUNDLE, ALLOW_INSECURE, etc.) - Proxy settings (HTTPS_PROXY, HTTP_PROXY, NO_PROXY, etc.) Closes konveyor#1462 Signed-off-by: David Zager <david.j.zager@gmail.com>
c10cd86 to
f01526c
Compare
|
PR cherry-picked to branch release-0.6. Backport PR: #1475 |
#1475) ## Problem The extension supports environment variables for pre-configuring behavior in managed environments like Dev Spaces, but they are not documented anywhere. Users have to grep source code to discover them. ## Solution Added an **Environment Variables** section to the extension README (`vscode/core/README.md`) documenting all supported env vars organized into four categories: - **Hub Configuration** — `HUB_URL`, `HUB_USERNAME`, `HUB_PASSWORD`, `FORCE_HUB_ENABLED`, `HUB_INSECURE`, `HUB_SOLUTION_SERVER_ENABLED`, `HUB_PROFILE_SYNC_ENABLED` - **Analyzer Binary Download** — `ANALYZER_FALLBACK_BASE_URL` - **TLS and Certificates** — `CA_BUNDLE`, `AWS_CA_BUNDLE`, `ALLOW_INSECURE`, `NODE_TLS_REJECT_UNAUTHORIZED` - **Proxy** — `HTTPS_PROXY`/`https_proxy`, `HTTP_PROXY`/`http_proxy`, `NO_PROXY`/`no_proxy` Each variable includes its type, default value, description, and relevant behavioral notes (e.g., precedence over VS Code settings, automatic Hub enablement). Closes #1462 Signed-off-by: David Zager <david.j.zager@gmail.com> Signed-off-by: Cherry Picker <noreply@github.com> Signed-off-by: David Zager <david.j.zager@gmail.com> Signed-off-by: Cherry Picker <noreply@github.com> Co-authored-by: David Zager <dzager@redhat.com>
Problem
The extension supports environment variables for pre-configuring behavior in managed environments like Dev Spaces, but they are not documented anywhere. Users have to grep source code to discover them.
Solution
Added an Environment Variables section to the extension README (
vscode/core/README.md) documenting all supported env vars organized into four categories:HUB_URL,HUB_USERNAME,HUB_PASSWORD,FORCE_HUB_ENABLED,HUB_INSECURE,HUB_SOLUTION_SERVER_ENABLED,HUB_PROFILE_SYNC_ENABLEDANALYZER_FALLBACK_BASE_URLCA_BUNDLE,AWS_CA_BUNDLE,ALLOW_INSECURE,NODE_TLS_REJECT_UNAUTHORIZEDHTTPS_PROXY/https_proxy,HTTP_PROXY/http_proxy,NO_PROXY/no_proxyEach variable includes its type, default value, description, and relevant behavioral notes (e.g., precedence over VS Code settings, automatic Hub enablement).
Closes #1462