Skip to content

chore(image): change uefi default value to false #926

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/stackit_image_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ stackit image create [flags]
--rescue-bus string Sets the device bus when the image is used as a rescue image.
--rescue-device string Sets the device when the image is used as a rescue image.
--secure-boot Enables Secure Boot.
--uefi Enables UEFI boot. (default true)
--uefi Enables UEFI boot.
--video-model string Sets Graphic device model.
--virtio-scsi Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.
```
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/image/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ func configureFlags(cmd *cobra.Command) {
cmd.Flags().String(rescueBusFlag, "", "Sets the device bus when the image is used as a rescue image.")
cmd.Flags().String(rescueDeviceFlag, "", "Sets the device when the image is used as a rescue image.")
cmd.Flags().Bool(secureBootFlag, false, "Enables Secure Boot.")
cmd.Flags().Bool(uefiFlag, true, "Enables UEFI boot.")
cmd.Flags().Bool(uefiFlag, false, "Enables UEFI boot.")
cmd.Flags().String(videoModelFlag, "", "Sets Graphic device model.")
cmd.Flags().Bool(virtioScsiFlag, false, "Enables the use of VirtIO SCSI to provide block device access. By default instances use VirtIO Block.")

Expand Down
Loading