Skip to content

Commit 78fb840

Browse files
committed
limactl: move --set, --network, and --video out of experimental
The following flags are no longer marked as experimental: - `limactl (create|start|edit) --set=<YQ EXPRESSION>` - `limactl (create|start|edit) --network=<NETWORK>` - `limactl (create|start|edit) --video=<BOOL>` Signed-off-by: Akihiro Suda <[email protected]>
1 parent 1525f6e commit 78fb840

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

cmd/limactl/editflags/editflags.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func YQExpressions(flags *flag.FlagSet, newInstance bool) ([]string, error) {
175175
return expr, nil
176176
},
177177
false,
178-
true},
178+
false},
179179
{"rosetta",
180180
func(_ *flag.Flag) (string, error) {
181181
b, err := flags.GetBool("rosetta")
@@ -186,7 +186,7 @@ func YQExpressions(flags *flag.FlagSet, newInstance bool) ([]string, error) {
186186
},
187187
false,
188188
true},
189-
{"set", d("%s"), false, true},
189+
{"set", d("%s"), false, false},
190190
{"video",
191191
func(_ *flag.Flag) (string, error) {
192192
b, err := flags.GetBool("video")
@@ -199,7 +199,7 @@ func YQExpressions(flags *flag.FlagSet, newInstance bool) ([]string, error) {
199199
return ".video.display = \"none\"", nil
200200
},
201201
false,
202-
true},
202+
false},
203203
{"arch", d(".arch = %q"), true, false},
204204
{"containerd",
205205
func(_ *flag.Flag) (string, error) {

website/content/en/docs/Releases/Experimental/_index.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,4 @@ The following features are experimental and subject to change:
1818

1919
The following commands are experimental and subject to change:
2020

21-
- `limactl (create|start|edit) --set=<YQ EXPRESSION>`
22-
- `limactl (create|start|edit) --network=<NETWORK>`
23-
- `limactl (create|start|edit) --video=<BOOL>`
2421
- `limactl snapshot *`

0 commit comments

Comments
 (0)