-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): restrict helm provider version to ~ 2.0.0 #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Warning Rate limit exceeded@Benbentwo has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 8 minutes and 10 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, 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 have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
WalkthroughThe version constraint for the Helm provider in the Terraform configuration file was updated from ">= 2.0" to "~> 2.0", limiting provider versions to the 2.x series and preventing automatic upgrades to 3.x or higher. Changes
Poem
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
src/versions.tf (1)
10-12: Good move to pessimistic constraint; consider an explicit lower bound for reproducibilitySwitching from
>= 2.0to~> 2.0prevents an accidental upgrade to Helm provider 3.x—which is prudent.
If your module depends on features/fixes that were added later in 2.x (e.g., 2.11.0’s ARM‐template support), you might also pin a minimum patch/minor version:helm = { source = "hashicorp/helm" version = ">= 2.11.0, < 3.0.0" }This guarantees both forward-compatibility (no 3.x) and a consistent baseline across teams/CI runs.
Otherwise, the current change is perfectly acceptable.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
src/versions.tf(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: component / terraform / Lint (./src)
- GitHub Check: component / terraform / bats
- GitHub Check: Summary
|
These changes were released in v2.1.0. |
This pull request includes a version constraint update for the Helm provider in the Terraform configuration file
src/versions.tf. The change ensures compatibility with versions up to but not including 3.0.0.Summary by CodeRabbit