-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
limactl: add limactl create
command
#1643
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 <akihiro.suda.cz@hco.ntt.co.jp>
49f9e21
to
65f0000
Compare
Yes, sorry, muscle memory... 😄
Ok, that makes sense. |
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 create
is similar tolimactl 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:
Recommended form: