-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Feature Request - add profile listing command #1716
Comments
Issues go stale after 90d of inactivity. Prevent issues from auto-closing with an If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or |
Any plans to support this? |
Yes, this is a feature we would still like. No one has picked it up so far though |
/lifecycle frozen |
@r2d4 I keep running into this, so I thought I'd take a stab at implementing. It seems like we could have a I am also wondering if it makes sense to implement a |
@alexbrand Good ideas. Some thoughts and cautions as improvements to public CLIs can be deceivingly complex: An asterisk next to the currently profile in the list would be consistent with:
When listing the profiles would the list just be the profile names or would there be a table of meta information such as status, size, last run, created, etc. or would there be Also, by adding the This is not to be confused with Disturbingly, the minikube style of commands conflict with the style of kubectl commands as they are often used in concert. For instance to get a list of pods it's |
This is my hack to get it done:
source <(curl -s https://gist.githubusercontent.com/gonzalesraul/92c45cb473aa61c0399dfa015f903e4c/raw/dc885f0eee5a587940647359af09ea31abf83355/minikube_profile.sh)
$ minikube profile list
* camigol (not created)
stack1
minikube NOTES:
|
Slight change to your nice solution @gonzalesraul for portability, OSX behavior for
Examples:
|
…le-list List and set minikube profiles kubernetes#1716
Implemented in minikube v1.4. |
FEATURE REQUEST :
Minikube version:
v0.20.0
minikube
doesn't tracks profiles right now. It would be great to track the existing profiles and be able to list them. Maybe theprofile
command can be changed to havels
andset
subcommands to list and set current profile.I felt the need for a list of profiles when I came across #1683. While deleting machine, profile/machine name could be passed. From my observation, machine name and profile names are the same. Ability to list the existing profiles would be helpful in this case.
The text was updated successfully, but these errors were encountered: