@@ -73,34 +73,76 @@ $ curl -k http://<HTTP_server>/bootstrap.ign <1>
73
73
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0{"ignition":{"version":"3.2.0"},"passwd":{"users":[{"name":"core","sshAuthorizedKeys":["ssh-rsa...
74
74
----
75
75
+
76
- Replace `bootstrap.ign` with `master.ign` or `worker.ign` in the command to validate that the Ignition config files for the control plane and compute nodes are also available.
76
+ Replace `bootstrap.ign` with `master.ign` or `worker.ign` in the command to validate
77
+ that the Ignition config files for the control plane and compute nodes are also available.
77
78
79
+ . Although it is possible to obtain the {op-system} `kernel` , `initramfs` and `rootfs`
80
+ files that are required for your preferred method of installing operating system instances from the
81
+ ifdef::openshift-enterprise[]
82
+ link:https://mirror.openshift.com/pub/openshift-v4/x86_64/dependencies/rhcos/[{op-system} image mirror]
83
+ endif::openshift-enterprise[]
84
+ ifdef::openshift-origin[]
85
+ link:https://getfedora.org/en/coreos/download?tab=metal_virtualized&stream=stable[{op-system}]
86
+ endif::openshift-origin[]
87
+ ifdef::ibm-power[]
88
+ link:https://mirror.openshift.com/pub/openshift-v4/ppc64le/dependencies/rhcos/[{op-system} image mirror]
89
+ endif::ibm-power[]
90
+ page, the recommended way to obtain the correct version of your {op-system} files are
91
+ from the output of `openshift-install` command:
92
+ +
93
+ [source,terminal]
94
+ ----
95
+ $ openshift-install coreos print-stream-json | grep -Eo '"https.*(kernel-|initramfs.|rootfs.)\w+(\.img)?"'
96
+ ----
97
+ +
98
+ .Example output
99
+ [source,terminal]
78
100
ifndef::openshift-origin[]
79
- . Obtain the {op-system} `kernel` ,
80
- `initramfs` and `rootfs` files from the
81
- link:https://mirror.openshift.com/pub/openshift-v4/dependencies/rhcos/4.10/[{op-system} image mirror]
82
- page.
101
+ ----
102
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-aarch64/49.84.202110080947-0/aarch64/rhcos-49.84.202110080947-0-live-kernel-aarch64"
103
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-aarch64/49.84.202110080947-0/aarch64/rhcos-49.84.202110080947-0-live-initramfs.aarch64.img"
104
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-aarch64/49.84.202110080947-0/aarch64/rhcos-49.84.202110080947-0-live-rootfs.aarch64.img"
105
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-ppc64le/49.84.202110081256-0/ppc64le/rhcos-49.84.202110081256-0-live-kernel-ppc64le"
106
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-ppc64le/49.84.202110081256-0/ppc64le/rhcos-49.84.202110081256-0-live-initramfs.ppc64le.img"
107
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-ppc64le/49.84.202110081256-0/ppc64le/rhcos-49.84.202110081256-0-live-rootfs.ppc64le.img"
108
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-s390x/49.84.202110081202-0/s390x/rhcos-49.84.202110081202-0-live-kernel-s390x"
109
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-s390x/49.84.202110081202-0/s390x/rhcos-49.84.202110081202-0-live-initramfs.s390x.img"
110
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9-s390x/49.84.202110081202-0/s390x/rhcos-49.84.202110081202-0-live-rootfs.s390x.img"
111
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9/49.84.202110081407-0/x86_64/rhcos-49.84.202110081407-0-live-kernel-x86_64"
112
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9/49.84.202110081407-0/x86_64/rhcos-49.84.202110081407-0-live-initramfs.x86_64.img"
113
+ "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.9/49.84.202110081407-0/x86_64/rhcos-49.84.202110081407-0-live-rootfs.x86_64.img"
114
+ ----
115
+ endif::openshift-origin[]
116
+ ifdef::openshift-origin[]
117
+ ----
118
+ "https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/34.20210626.3.1/x86_64/fedora-coreos-34.20210626.3.1-live-kernel-x86_64"
119
+ "https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/34.20210626.3.1/x86_64/fedora-coreos-34.20210626.3.1-live-initramfs.x86_64.img"
120
+ "https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/34.20210626.3.1/x86_64/fedora-coreos-34.20210626.3.1-live-rootfs.x86_64.img"
121
+ ----
122
+ endif::openshift-origin[]
83
123
+
84
124
[IMPORTANT]
85
125
====
86
126
The {op-system} artifacts might not change with every release of {product-title} .
87
- You must download artifacts with the highest version that is less than or equal
127
+ You must download images with the highest version that is less than or equal
88
128
to the {product-title} version that you install. Only use
89
129
the appropriate `kernel` , `initramfs` , and `rootfs` artifacts described below
90
130
for this procedure.
91
- {op-system} QCOW2 images are not supported for this installation type.
131
+ {op-system} QCOW2 images are not supported for this installation type.
92
132
====
93
133
+
94
134
The file names contain the {product-title} version number.
95
135
They resemble the following examples:
96
-
136
+ +
137
+ ifndef::openshift-origin[]
97
138
** `kernel` : `rhcos-<version>-live-kernel-<architecture>`
98
139
** `initramfs` : `rhcos-<version>-live-initramfs.<architecture>.img`
99
140
** `rootfs` : `rhcos-<version>-live-rootfs.<architecture>.img`
100
141
endif::openshift-origin[]
101
142
ifdef::openshift-origin[]
102
- . Obtain the {op-system} `kernel` , `initramfs` and `rootfs` files from the
103
- link:https://getfedora.org/en/coreos/download?tab=metal_virtualized&stream=stable[{op-system} Downloads] page
143
+ ** `kernel` : `fedora-coreos-<version>-live-kernel-<architecture>`
144
+ ** `initramfs` : `fedora-coreos-<version>-live-initramfs.<architecture>.img`
145
+ ** `rootfs` : `fedora-coreos-<version>-live-rootfs.<architecture>.img`
104
146
endif::openshift-origin[]
105
147
106
148
. Upload the `rootfs` , `kernel` , and `initramfs` files
0 commit comments