File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
"github.com/lima-vm/lima/pkg/snapshot"
8
8
"github.com/lima-vm/lima/pkg/store"
9
+ "github.com/sirupsen/logrus"
9
10
10
11
"github.com/spf13/cobra"
11
12
)
@@ -14,6 +15,9 @@ func newSnapshotCommand() *cobra.Command {
14
15
var snapshotCmd = & cobra.Command {
15
16
Use : "snapshot" ,
16
17
Short : "Manage instance snapshots" ,
18
+ PersistentPreRun : func (cmd * cobra.Command , args []string ) {
19
+ logrus .Warn ("`limactl snapshot` is experimental" )
20
+ },
17
21
}
18
22
snapshotCmd .AddCommand (newSnapshotApplyCommand ())
19
23
snapshotCmd .AddCommand (newSnapshotCreateCommand ())
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ The following features are experimental and subject to change:
9
9
- ` mode: user-v2 ` in ` networks.yml ` and relevant configuration in ` lima.yaml `
10
10
- ` audio.device `
11
11
12
- The following flags are experimental and subject to change:
12
+ The following commands are experimental and subject to change:
13
13
14
- - ` start --set ` , yq expression
15
- - ` edit --set ` , yq expression
14
+ - ` limactl ( start|edit) --set=<YQ EXPRESSION> `
15
+ - ` limactl snapshot * `
You can’t perform that action at this time.
0 commit comments