Skip to content

Commit e03a4ea

Browse files
committed
updated disconnected installation section
Closes: #150 Signed-off-by: Robert Guske <robert.guske@gmail.com>
1 parent c1b6487 commit e03a4ea

1 file changed

Lines changed: 11 additions & 15 deletions

File tree

content/cluster-installation/disconnected/disconnected-installation.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ OpenShift Container Platform is designed to perform many automatic functions tha
77
Source: [Understanding disconnected installation mirroring](https://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/installing_an_on-premise_cluster_with_the_agent-based_installer/understanding-disconnected-installation-mirroring)
88

99
---
10+
1011
- [Disconnected Agent-Based Cluster Installation](#disconnected-agent-based-cluster-installation)
1112
- [How it works](#how-it-works)
1213
- [Connected Mirroring vs Disconnected Mirroring](#connected-mirroring-vs-disconnected-mirroring)
@@ -410,7 +411,7 @@ FATAL * failed to validate network yaml for host 0, install nmstate package, e
410411

411412
### Installing Podman Offline
412413

413-
1. Mount a RHEL installation iso file to the system (VM or BM via Board Management Controller).
414+
- Mount a RHEL installation iso file to the system (VM or BM via Board Management Controller).
414415

415416
Check e.g. with `lsblk` for the disconnected "cdrom" (iso) device:
416417

@@ -427,17 +428,17 @@ sda 8:0 0 120G 0 disk
427428
sr0 11:0 1 11G 0 rom
428429
```
429430

430-
2. Create a folder in which the iso content will be accessible:
431+
- Create a folder in which the iso content will be accessible:
431432

432433
`mkdir -p /mnt/rhel-iso`
433434

434-
3. Mount the connected iso accordingly:
435+
- Mount the connected iso accordingly:
435436

436437
`mount -o loop /path/to/rhel.iso /mnt/rhel-iso`
437438

438439
Example in my case with a VM: `mount -o loop /dev/sr0 /mnt/rhel-iso`
439440

440-
4. Create a Local Repository:
441+
- Create a Local Repository:
441442

442443
```code
443444
cat <<EOF | tee /etc/yum.repos.d/rhel9-iso.repo
@@ -455,7 +456,7 @@ gpgcheck=0
455456
EOF
456457
```
457458

458-
5. Install Podman and `nmstate`
459+
- Install Podman and `nmstate`
459460

460461
`dnf install podman -y`
461462
`dnf install nmstate -y`
@@ -815,16 +816,11 @@ Ensure that clis are in your $PATH. Otherwise `export PATH=/usr/local/bin:$PATH`
815816

816817
The oc-mirror plugin v2 automatically generates the following custom resources:
817818

818-
- `ImageDigestMirrorSet` (IDMS)
819-
Handles registry mirror rules when using image digest pull specifications. Generated if at least one image of the image set is mirrored by digest.
820-
- `ImageTagMirrorSet` (ITMS)
821-
Handles registry mirror rules when using image tag pull specifications. Generated if at least one image from the image set is mirrored by tag.
822-
- `CatalogSource`
823-
Retrieves information about the available Operators in the mirror registry. Used by Operator Lifecycle Manager (OLM) Classic.
824-
- `ClusterCatalog`
825-
Retrieves information about the available cluster extensions (which includes Operators) in the mirror registry. Used by OLM v1.
826-
- `UpdateService`
827-
Provides update graph data to the disconnected environment. Used by the OpenShift Update Service.
819+
- `ImageDigestMirrorSet` (IDMS): Handles registry mirror rules when using image digest pull specifications. Generated if at least one image of the image set is mirrored by digest.
820+
- `ImageTagMirrorSet` (ITMS): Handles registry mirror rules when using image tag pull specifications. Generated if at least one image from the image set is mirrored by tag.
821+
- `CatalogSource`: Retrieves information about the available Operators in the mirror registry. Used by Operator Lifecycle Manager (OLM) Classic.
822+
- `ClusterCatalog`: Retrieves information about the available cluster extensions (which includes Operators) in the mirror registry. Used by OLM v1.
823+
- `UpdateService`: Provides update graph data to the disconnected environment. Used by the OpenShift Update Service.
828824

829825
Mirror the images from the specified image set configuration to the disk by running the following command:
830826

0 commit comments

Comments
 (0)