mirror of https://github.com/containers/podman.git
Remove references to qcow2
Issue #16928 rightly points out that qcow2 images are not used on all podman architectures. Fixes: #16928 Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
parent
4a57cfb926
commit
0c68058805
|
@ -89,11 +89,11 @@ func init() {
|
|||
_ = flags.MarkHidden("reexec")
|
||||
|
||||
UsernameFlagName := "username"
|
||||
flags.StringVar(&initOpts.Username, UsernameFlagName, cfg.ContainersConfDefaultsRO.Machine.User, "Username used in qcow image")
|
||||
flags.StringVar(&initOpts.Username, UsernameFlagName, cfg.ContainersConfDefaultsRO.Machine.User, "Username used in image")
|
||||
_ = initCmd.RegisterFlagCompletionFunc(UsernameFlagName, completion.AutocompleteDefault)
|
||||
|
||||
ImagePathFlagName := "image-path"
|
||||
flags.StringVar(&initOpts.ImagePath, ImagePathFlagName, cfg.ContainersConfDefaultsRO.Machine.Image, "Path to qcow image")
|
||||
flags.StringVar(&initOpts.ImagePath, ImagePathFlagName, cfg.ContainersConfDefaultsRO.Machine.Image, "Path to bootable image")
|
||||
_ = initCmd.RegisterFlagCompletionFunc(ImagePathFlagName, completion.AutocompleteDefault)
|
||||
|
||||
VolumeFlagName := "volume"
|
||||
|
|
|
@ -10,7 +10,7 @@ type initMachine struct {
|
|||
--disk-size uint Disk size in GB (default 100)
|
||||
--ignition-path string Path to ignition file
|
||||
--username string Username of the remote user (default "core" for FCOS, "user" for Fedora)
|
||||
--image-path string Path to qcow image (default "testing")
|
||||
--image-path string Path to bootable image (default "testing")
|
||||
-m, --memory uint Memory in MB (default 2048)
|
||||
--now Start machine now
|
||||
--rootful Whether this machine should prefer rootful container execution
|
||||
|
|
Loading…
Reference in New Issue