Skip to content
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

Dk ospc 721 #571

Closed
wants to merge 7 commits into from
Closed
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
23 changes: 23 additions & 0 deletions docs/openstack-glance-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,3 +390,26 @@ openstack --os-cloud default image create \
--property os_version=9.4 \
RHEL-9.4
```

## Get Windows

!!! note

You will need to create a virtual disk image from your own licensed media and convert to .qcow2 format. This example uses a Windows 2022 Standard Edition installation generalized with cloud-init and sysprep, then converted the image to .qcow2 format using qemu-img. For additional information on creating a Windows image, please see the [upstream documentation](https://docs.openstack.org/image-guide/create-images-manually-example-windows-image.html).

``` shell
openstack --os-cloud default image create \
--progress \
--disk-format qcow2 \
--min-disk 50 \
--min-ram 2048 \
--container-format bare \
--file Windows2022StdEd.qcow2 \
--private \
--property hypervisor_type=kvm \
--property os_type=windows \
--property os_admin_user=administrator \
--property os_distro=windows \
--property os_version=2022 \
Windows-2022-Standard
```
Loading