Skip to content
Merged
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
16 changes: 15 additions & 1 deletion modules/installation-rhv-specifying-rhcos-image-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Update the {op-system-first} image settings of the `inventory.yml` file. Later,
// Consider combining this topic with another one after we've resolved the issue of getting the files.

.Procedure

ifndef::openshift-origin[]
. Locate the {op-system} image download page for the version of {product-title} you are installing, such as link:https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/4.8/latest/[Index of /pub/openshift-v4/dependencies/rhcos/latest/latest].

. From that download page, copy the URL of an OpenStack `qcow2` image, such as `\https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/4.8/latest/rhcos-openstack.x86_64.qcow2.gz`.
Expand All @@ -24,3 +24,17 @@ Update the {op-system-first} image settings of the `inventory.yml` file. Later,
rhcos:
"https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/4.8/latest/rhcos-openstack.x86_64.qcow2.gz"
----
endif::openshift-origin[]
ifdef::openshift-origin[]
. Locate the {op-system} image download page, such as link:https://getfedora.org/coreos/download?tab=cloud_operators&stream=stable[Download Fedora CoreOS].

. From that download page, copy the URL of an OpenStack `qcow2` image, such as `\https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/34.20210611.3.0/x86_64/fedora-coreos-34.20210611.3.0-openstack.x86_64.qcow2.xz`.

. Edit the `inventory.yml` playbook you downloaded earlier. In it, replace the `rhcos` stanza and paste the URL as the value for `image_url`. For example:
+
[source,yaml]
----
rhcos:
image_url: "https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/34.20210611.3.0/x86_64/fedora-coreos-34.20210611.3.0-openstack.x86_64.qcow2.xz"
----
endif::openshift-origin[]