orchard create vm: do not enable --nested by default (#348)

This commit is contained in:
Nikolay Edigaryev 2025-09-29 15:37:28 +02:00 committed by GitHub
parent 43e21c7963
commit cdece3149b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ func newCreateVMCommand() *cobra.Command {
command.Flags().BoolVar(&netSoftnet, "net-softnet", false, "whether to use Softnet network isolation")
command.Flags().StringVar(&netBridged, "net-bridged", "", "whether to use Bridged network mode")
command.Flags().BoolVar(&headless, "headless", true, "whether to run without graphics")
command.Flags().BoolVar(&nested, "nested", true, "enable nested virtualization")
command.Flags().BoolVar(&nested, "nested", false, "enable nested virtualization")
command.Flags().StringVar(&username, "username", "admin",
"SSH username to use when executing a startup script on the VM")
command.Flags().StringVar(&password, "password", "admin",