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

openstack: add note about compressed image format #2416

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/user/openstack/README.md
Expand Up @@ -97,7 +97,19 @@ Etcd is run on your control plane nodes, and it has disk requirements that need

### Red Hat Enterprise Linux CoreOS (RHCOS)

Get the latest RHCOS image [here](https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/pre-release/latest/). The installer requires a proper RHCOS image in the OpenStack cluster or project:
Get the latest RHCOS image [here](https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/pre-release/latest/).

**NOTE:** The OpenStack QCOW2 image is delivered in compressed format. You will need to provide the necessary options to `curl` or `wget` when downloading the image, otherwise your image may appear corrupted.

For example:

```sh
curl --compressed -J -L -O <url of OpenStack QCOW2>

wget --compresion=auto <url of OpenStack QCOW2>
```

The installer requires a proper RHCOS image in the OpenStack cluster or project:

```sh
openstack image create --container-format=bare --disk-format=qcow2 --file rhcos-${RHCOSVERSION}-openstack.qcow2 rhcos
Expand Down