Skip to content

EPMRPP-113668 || Update Kubernetes chart in RP Docs+video link for MCP#1092

Merged
maria-hambardzumian merged 1 commit intodevelopfrom
EPMRPP-113668
Mar 19, 2026
Merged

EPMRPP-113668 || Update Kubernetes chart in RP Docs+video link for MCP#1092
maria-hambardzumian merged 1 commit intodevelopfrom
EPMRPP-113668

Conversation

@pressayuliya
Copy link
Copy Markdown
Contributor

@pressayuliya pressayuliya commented Mar 19, 2026

Summary by CodeRabbit

  • Documentation
    • Added reference to practical usage video examples.
    • Updated Helm repository URL for Kubernetes deployment setup.

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 19, 2026

Walkthrough

This pull request includes two minor documentation updates: adding a YouTube video link to the MCP Server example queries section and updating the Helm repository URL in Kubernetes deployment instructions.

Changes

Cohort / File(s) Summary
MCP Server Documentation
docs/external-integrations/MCPServer.mdx
Added a reference link to a YouTube video demonstrating practical usage examples under the Example Queries section.
Kubernetes Deployment Guide
docs/installation-steps/DeployWithKubernetes.md
Updated the Helm repository URL from https://reportportal.io/kubernetes to https://k8s.reportportal.io and reformatted the command syntax.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

Suggested reviewers

  • AmsterGet
  • maria-hambardzumian

Poem

🐰 A video link hops into the docs so bright,
And Helm charts point to URLs in flight,
Small changes, but helpful all the same,
Documentation improved—what a wholesome game! 📹✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the pull request's main changes: updating a Kubernetes chart repository URL in the deployment documentation and adding a video link for MCP in the external integrations documentation.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch EPMRPP-113668
📝 Coding Plan
  • Generate coding plan for human review comments

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Tip

You can generate walkthrough in a markdown collapsible section to save space.

Enable the reviews.collapse_walkthrough setting to generate walkthrough in a markdown collapsible section.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
docs/external-integrations/MCPServer.mdx (1)

360-361: Consider removing the tracking parameter for a cleaner documentation URL.

The YouTube video link is accessible and working. The ?si=tBQ-t5sZWzW5S8Kr parameter is a YouTube sharing identifier that can be omitted for a simpler, cleaner URL in documentation.

Optional: Cleaner URL without tracking parameter
-You can see practical usage examples in [this video](https://youtu.be/1WKh8WLiA3Q?si=tBQ-t5sZWzW5S8Kr).
+You can see practical usage examples in [this video](https://youtu.be/1WKh8WLiA3Q).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/external-integrations/MCPServer.mdx` around lines 360 - 361, Update the
YouTube link in the sentence that currently ends with
"https://youtu.be/1WKh8WLiA3Q?si=tBQ-t5sZWzW5S8Kr" by removing the query
parameter so it becomes "https://youtu.be/1WKh8WLiA3Q"; edit the markdown in
docs/external-integrations/MCPServer.mdx where that URL is referenced to use the
cleaner URL.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docs/installation-steps/DeployWithKubernetes.md`:
- Around line 22-23: The Minikube guide still references the old Helm repo URL;
open DeployWithMinikube.md, find the helm repo commands that use "helm repo add
reportportal https://reportportal.io/kubernetes" (and the subsequent "helm repo
update reportportal") and replace the old URL with the new one
"https://k8s.reportportal.io" so the Minikube instructions match
DeployWithKubernetes.md and there are no conflicting repository URLs.

---

Nitpick comments:
In `@docs/external-integrations/MCPServer.mdx`:
- Around line 360-361: Update the YouTube link in the sentence that currently
ends with "https://youtu.be/1WKh8WLiA3Q?si=tBQ-t5sZWzW5S8Kr" by removing the
query parameter so it becomes "https://youtu.be/1WKh8WLiA3Q"; edit the markdown
in docs/external-integrations/MCPServer.mdx where that URL is referenced to use
the cleaner URL.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: dff55ac9-c31b-4d3d-bbfb-899eb36a2295

📥 Commits

Reviewing files that changed from the base of the PR and between 3e65a1f and d15b33c.

📒 Files selected for processing (2)
  • docs/external-integrations/MCPServer.mdx
  • docs/installation-steps/DeployWithKubernetes.md

Comment on lines +22 to +23
helm repo add reportportal https://k8s.reportportal.io
helm repo update reportportal
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Find all references to the old Helm repository URL in documentation

# Search for the old URL pattern
rg -n "reportportal\.io/kubernetes" --type md

# Search for any helm repo add commands to see all Helm repository configurations
rg -n "helm repo add reportportal" --type md -A 1

Repository: reportportal/docs

Length of output: 593


🏁 Script executed:

#!/bin/bash
# Description: Verify the new Helm repository URL is accessible

# Test if the URL is accessible
curl -I https://k8s.reportportal.io

# Try to fetch the index.yaml which should exist in a Helm repo
curl -s https://k8s.reportportal.io/index.yaml | head -20

Repository: reportportal/docs

Length of output: 1568


Update the Minikube deployment guide to use the new Helm repository URL.

The new Helm repository URL (https://k8s.reportportal.io) is valid and serves the chart repository correctly. However, the Minikube deployment guide (docs/installation-steps/DeployWithMinikube.md line 45) still references the old URL (https://reportportal.io/kubernetes). This creates conflicting instructions for users depending on which installation path they follow. Update DeployWithMinikube.md to use the new URL for consistency.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/installation-steps/DeployWithKubernetes.md` around lines 22 - 23, The
Minikube guide still references the old Helm repo URL; open
DeployWithMinikube.md, find the helm repo commands that use "helm repo add
reportportal https://reportportal.io/kubernetes" (and the subsequent "helm repo
update reportportal") and replace the old URL with the new one
"https://k8s.reportportal.io" so the Minikube instructions match
DeployWithKubernetes.md and there are no conflicting repository URLs.

@maria-hambardzumian maria-hambardzumian merged commit f32d84d into develop Mar 19, 2026
2 checks passed
@maria-hambardzumian maria-hambardzumian deleted the EPMRPP-113668 branch March 19, 2026 16:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants