ROSAENG-133 - feat: add extraVolumes and extraVolumeMounts support to…#89
ROSAENG-133 - feat: add extraVolumes and extraVolumeMounts support to…#89cdoan1 wants to merge 1 commit into
Conversation
|
Hi @cdoan1. Thanks for your PR. I'm waiting for a openshift-hyperfleet member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
Warning Review limit reached
More reviews will be available in 41 minutes and 54 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more credits in the billing tab to continue. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Central YAML (base), Organization UI (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughThis PR adds two Helm values, Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes 🚥 Pre-merge checks | ✅ 11✅ Passed checks (11 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
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 |
|
/ok-to-test |
ciaranRoche
left a comment
There was a problem hiding this comment.
Just one comment inline, not against this change, so added ok-to-test while you confirm its required beyond using the SA annotations.
| # Note: For GCP Pub/Sub with Workload Identity Federation, no annotations are | ||
| # needed. Use `gcloud projects add-iam-policy-binding` with the principal:// | ||
| # format instead. See docs/running-sentinel.md for details. | ||
| annotations: {} |
There was a problem hiding this comment.
Not against adding the extra vol mounts to the vals here, but wondering if SA annotations would solve your pod identity setup?
There was a problem hiding this comment.
@ciaranRoche where using this like below, so even with SA annotation, we need mount the secret
# Service account configuration for AWS Pod Identity
serviceAccount:
create: true
annotations:
# AWS IAM role for Pod Identity
# Replace with your actual IAM role ARN
eks.amazonaws.com/role-arn: ""
name: sentinel-sa
# Volume configuration to mount secrets from SecretProviderClass
# Using extraVolumes/extraVolumeMounts to integrate with upstream chart
extraVolumes:
- name: secrets-store-inline
csi:
driver: secrets-store.csi.k8s.io
readOnly: true
volumeAttributes:
secretProviderClass: hyperfleet-sentinel-secrets
extraVolumeMounts:
- name: secrets-store-inline
mountPath: /mnt/secrets-store
readOnly: true
|
let me rebase |
c1b804c to
0163cb9
Compare
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Risk Score: 0 —
|
| Signal | Detail | Points |
|---|---|---|
| PR size | 22 lines | +0 |
| Sensitive paths | none | +0 |
Computed by hyperfleet-risk-scorer
|
/test |
|
/test helm-test |
… Helm chart Adds configuration options to inject custom volumes and volume mounts into the Sentinel deployment, enabling users to mount additional ConfigMaps, Secrets, or other volume types as needed. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
0163cb9 to
6a35d25
Compare
… Helm chart
Summary
Adds configuration options to inject custom volumes and volume mounts into the Sentinel deployment, enabling users to mount additional ConfigMaps, Secrets, or other volume types as needed.
Used by the regional team to support aws podidentity
Test Plan
make test-allpassesmake lintpassesmake test-helm(if applicable)