-
Notifications
You must be signed in to change notification settings - Fork 521
Add kubectl-create-limitrange
plugin to Krew index
#4182
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
base: master
Are you sure you want to change the base?
Conversation
🤖 Beep beep! I’m a robot speaking on behalf of @ahmetb. 🤖 Thanks for submitting your kubectl plugin to Krew! In the meanwhile, here are a few tips to make your plugin manifest better:
Thanks for your patience! |
Hi @chriskim06 or team, Just a friendly reminder about this PR – it’s been open for a while, and I’d appreciate it if someone could take a look when time permits. Let me know if there’s anything I can clarify or improve! Thanks for your time! 😊 |
Hey! I'm thinking if we should accept this as part of the new "create plugins" feature (would be named "create-limitrange" in that case). We can implement that feature fairly easily and users can call it via "kubectl create limitrange". |
Hey, any think I could help with, @ahmetb @chrischdi ? |
I was probably tagged by accident, I don't have any permissions/ownerships on this repository :-) Did you consider ahmetb's question? |
Sorry, I meant @chriskim06... Thanks, man |
whoops sorry, i totally missed this notification the first time around. but as @chrischdi said, have you considered @ahmetb's question? i agree this would make more sense as a create plugin. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: mfenerich The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hey, guys... I think I get it done as @ahmetb suggested. When you have some time pls review this PR :) Thank you, @chriskim06 |
kubectl-limitrange
plugin to Krew indexkubectl-create-limitrange
plugin to Krew index
Title: Add
kubectl-create-limitrange
plugin to Krew indexDescription:
This PR adds the
kubectl-create-limitrange
plugin to the Krew plugin index.Plugin Name:
kubectl-create-limitrange
Plugin Repository: https://github.com/mfenerich/kubectl-lr
Overview
kubectl create-limitrange
is a kubectl plugin that extends the standardkubectl create
command, allowing easy creation of LimitRange resources in Kubernetes namespaces with configurable CPU and memory limits. It helps cluster administrators enforce resource constraints and optimize cluster performance.Key Features
Why This Plugin Should Be Accepted
create limitrange
) that aligns with kubectl's command structure.Compliance with Krew Guidelines
kubectl-<verb>-<noun>
format, adhering to kubectl's command structure.Testing and Verification
Example Usage
# Create a LimitRange in the 'development' namespace with custom limits kubectl create limitrange my-limitrange --namespace=development --min-cpu=100m --max-cpu=500m --min-memory=128Mi --max-memory=1Gi
Related Links