Skip to content

Conversation

@arikalon1
Copy link
Contributor

No description provided.

@arikalon1 arikalon1 requested a review from aantn August 29, 2025 15:21
@coderabbitai
Copy link

coderabbitai bot commented Aug 29, 2025

Walkthrough

Documentation updates to the AWS AMP metric provider Quick Start: adds parallel IRSA and Access Keys authentication examples, adjusts runnerServiceAccount annotations and placement, removes embedded AWS creds from the IRSA path, introduces secretKeyRef usage for Access Keys, and normalizes YAML ordering/indentation without changing semantics.

Changes

Cohort / File(s) Summary of Changes
Docs: AWS AMP authentication examples
docs/configuration/metric-providers-aws.rst
Split Quick Start into IRSA and Access Keys flows; IRSA example removes AWS creds and adds runnerServiceAccount annotations; non-IRSA adds AWS creds via secretKeyRef; reordered toolsets.prometheus/metrics keys; normalized YAML structure/indentation for globalConfig and runner without semantic changes.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • moshemorad

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch irsa-docs-fix

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
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@arikalon1 arikalon1 enabled auto-merge (squash) August 29, 2025 15:24
Copy link

@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: 2

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (3)
docs/configuration/metric-providers-aws.rst (3)

32-58: Add aud condition to IRSA trust policy.

Best practice (and common requirement) is to include the aud condition set to sts.amazonaws.com alongside sub.

           "Condition": {
             "StringEquals": {
+              "oidc.eks.<REGION>.amazonaws.com/id/<OIDC_ID>:aud": "sts.amazonaws.com",
               "oidc.eks.<REGION>.amazonaws.com/id/<OIDC_ID>:sub": "system:serviceaccount:<NAMESPACE>:<SERVICE_ACCOUNT_NAME>"
             }
           }

Refs: EKS docs and AWS guidance. (repost.aws, docs.aws.amazon.com)


11-19: Scope prerequisite #3 to the Access Keys flow only.

IRSA doesn’t require long‑lived access keys. Clarify to avoid confusion.

-3. **AWS access credentials (Access Key and Secret Key)**  
-   With sufficient permissions to query AMP (for example, the ``AmazonPrometheusQueryAccess`` policy).
+3. **If not using IRSA**: AWS access credentials (Access Key ID and Secret Access Key)  
+   With sufficient permissions to query AMP (for example, the ``AmazonPrometheusQueryAccess`` policy).

(Policy example remains appropriate. (docs.aws.amazon.com))


165-168: Clarify required env vars by auth method.

Readers using Access Keys will miss the credential vars here.

 **Required Environment Variables**:
 
 - ``PROMETHEUS_SSL_ENABLED``: Always ``"true"``
 - ``AWS_SERVICE_NAME``: Always ``"aps"`` for Amazon Prometheus Service
 - ``AWS_REGION``: The AWS region where your workspace is located
+  
+If using Access Keys (non‑IRSA):
+- ``AWS_ACCESS_KEY_ID`` and ``AWS_SECRET_ACCESS_KEY``: Your AWS credentials

Refs for names. (docs.aws.amazon.com)

🧹 Nitpick comments (1)
docs/configuration/metric-providers-aws.rst (1)

124-148: Optional: mention session tokens for temporary creds.

If users load temporary credentials (e.g., from STS), they must also supply AWS_SESSION_TOKEN.

             - name: AWS_SECRET_ACCESS_KEY
               valueFrom:
                 secretKeyRef:
                   name: aws-secret-key
                   key: secret-key
+            # Optional if using temporary credentials (STS):
+            # - name: AWS_SESSION_TOKEN
+            #   valueFrom:
+            #     secretKeyRef:
+            #       name: aws-secret-key
+            #       key: session-token

Reference: AWS env var list. (docs.aws.amazon.com)

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 350448b and a431b82.

📒 Files selected for processing (1)
  • docs/configuration/metric-providers-aws.rst (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: run_tests
  • GitHub Check: run_tests
  • GitHub Check: Deploy docs
  • GitHub Check: Deploy docs
🔇 Additional comments (4)
docs/configuration/metric-providers-aws.rst (4)

92-99: LGTM: IRSA env vars are minimal and correct.

Keeping only PROMETHEUS_SSL_ENABLED, AWS_SERVICE_NAME=aps, and AWS_REGION aligns with IRSA.


172-179: Nice: clear note on Prometheus flags.

Setting check_prometheus_flags: false is required with AMP; the callout helps prevent user errors.


60-101: Overall doc improvements are solid.

Splitting IRSA vs Access Keys, removing inline creds, and using secretKeyRef are the right moves. Thanks for tightening indentation/order.

Also applies to: 102-151


83-86: runnerServiceAccount key confirmed: helm/robusta/values.yaml and templates use runnerServiceAccount, so the docs are accurate.

@arikalon1 arikalon1 merged commit 4b749bb into master Aug 30, 2025
10 checks passed
@arikalon1 arikalon1 deleted the irsa-docs-fix branch August 30, 2025 11:51
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.

3 participants