Skip to content

Commit da66d8c

Browse files
authored
Merge pull request #1852 from AkihiroSuda/yq-out-of-experimental
limactl: move `--set`, `--network`, and `--video` out of experimental
2 parents 409aa86 + 78fb840 commit da66d8c

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)