You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/cmd/instance.go
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -83,11 +83,13 @@ var instancesCreate = requestflag.WithInnerFlags(cli.Command{
83
83
&requestflag.Flag[bool]{
84
84
Name: "skip-guest-agent",
85
85
Usage: "Skip guest-agent installation during boot.\nWhen true, the exec and stat APIs will not work for this instance.\nThe instance will still run, but remote command execution will be unavailable.\n",
86
+
Default: false,
86
87
BodyPath: "skip_guest_agent",
87
88
},
88
89
&requestflag.Flag[bool]{
89
90
Name: "skip-kernel-headers",
90
91
Usage: "Skip kernel headers installation during boot for faster startup.\nWhen true, DKMS (Dynamic Kernel Module Support) will not work,\npreventing compilation of out-of-tree kernel modules (e.g., NVIDIA vGPU drivers).\nRecommended for workloads that don't need kernel module compilation.\n",
92
+
Default: false,
91
93
BodyPath: "skip_kernel_headers",
92
94
},
93
95
&requestflag.Flag[int64]{
@@ -193,6 +195,7 @@ var instancesLogs = cli.Command{
193
195
&requestflag.Flag[bool]{
194
196
Name: "follow",
195
197
Usage: "Continue streaming new lines after initial output",
198
+
Default: false,
196
199
QueryPath: "follow",
197
200
},
198
201
&requestflag.Flag[string]{
@@ -272,6 +275,7 @@ var instancesStat = cli.Command{
272
275
&requestflag.Flag[bool]{
273
276
Name: "follow-links",
274
277
Usage: "Follow symbolic links (like stat vs lstat)",
0 commit comments