-
Notifications
You must be signed in to change notification settings - Fork 768
limactl: add limactl create command
#1643
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
|
Sounds good to me, more similar to
You might end up having to keep the discouraged form forever, or by adding a
|
13a6148 to
49f9e21
Compare
|
There are still lots of instances of |
I guess you meant |
`limactl create` is similar to `limactl start` but it does not start the created instance, and it does not accept an existing instance name as an argument. Now it is discouraged (not deprecated) to use `limactl start` for creating new instances. Discouraged form: ``` limactl start --name=foo template://docker ``` Recommended form: ``` limactl create --name=foo template://docker limactl start foo ``` Signed-off-by: Akihiro Suda <[email protected]>
49f9e21 to
65f0000
Compare
Yes, sorry, muscle memory... 😄
Ok, that makes sense. |
jandubois
left a comment
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.
Thanks, LGTM
limactl createis similar tolimactl startbut it does not start the created instance, and it does not accept an existing instance name as an argument.Now it is discouraged (not deprecated) to use
limactl startfor creating new instances.Discouraged form:
Recommended form: