Managing ISO images

You can use orcharhino to store ISO images, either from Red Hat’s Content Delivery Network or other sources. You can also upload other files, such as virtual machine images, and publish them in repositories.

ATIX does not support provisioning Oracle Linux hosts using the minimal ISO image because it does not contain the subscription-manager package and its dependencies.

Importing individual ISO images and files

Use this procedure to manually import ISO content and other files to orcharhino Server. To import files, you can complete the following steps in the orcharhino management UI or using the Hammer CLI. However, if the size of the file that you want to upload is larger than 15 MB, you must use the Hammer CLI to upload it to a repository.

To use the CLI instead of the orcharhino management UI, see the CLI procedure.

Procedure
  1. In the orcharhino management UI, navigate to Content > Products, and in the Products window, click Create Product.

  2. In the Name field, enter a name to identify the product. This name populates the Label field.

  3. Optional: In the GPG Key field, enter a GPG Key for the product.

  4. Optional: From the Sync Plan list, select a synchronization plan for the product.

  5. Optional: In the Description field, enter a description of the product.

  6. Click Save.

  7. In the Products window, click the new product and then click Create Repository.

  8. In the Name field, enter a name for the repository. This automatically populates the Label field.

  9. From the Type list, select file.

  10. In the Upstream URL field, enter the URL of the registry to use as a source. Add a corresponding user name and password in the Upstream Username and Upstream Password fields.

  11. Click Save.

  12. Select the new repository.

  13. Navigate to Upload File and click Browse.

  14. Select the .iso file and click Upload.

CLI procedure
  1. Create the custom product:

    # hammer product create \
    --name "My_ISOs" \
    --sync-plan "Example Plan" \
    --description "My_Product" \
    --organization "My_Organization"
  2. Create the repository:

    # hammer repository create \
    --name "My_ISOs" \
    --content-type "file" \
    --product "My_Product" \
    --organization "My_Organization"
  3. Upload the ISO file to the repository:

    # hammer repository upload-content \
    --path ~/bootdisk.iso \
    --id repo_ID \
    --organization "My_Organization"

Preparing Offline Installation Media for Oracle Linux 9

This procedure describes how to add installation media for Oracle Linux.

Prerequisites
  • You have selected at least one Oracle Linux variant from the list of operating systems during step four of the main installation steps.

  • You have obtained the .iso files for Oracle Linux.

  • You have created the necessary operating system entries in orcharhino.

    Navigate to Hosts > Installation Media and ensure there are already entries for Oracle Linux 9.

    Oracle Linux installation media
Procedure
  1. Copy the Oracle Linux .iso file to your orcharhino Server:

    # scp oracle_linux.iso root@orcharhino.example.com:/tmp/
  2. Create the directory for your Oracle Linux medium:

    # mkdir -p /var/www/html/pub/installation_media/oracle_linux/
  3. Extract the Oracle Linux .iso file to the newly created directory:

    1. Install p7zip:

      # dnf install p7zip p7zip-plugins
    2. Extract the .iso file:

      # 7z x /tmp/oracle_linux.iso -o /var/www/html/pub/installation_media/Oracle Linux/
    3. Ensure the permissions of your extracted files allow the apache user to read them:

      # chmod -R go+X+r /var/www/html/pub/installation_media/oracle_linux/*
  4. Optional: Navigate to http://orcharhino.example.com/pub/installation_media/ to ensure the extracted files are available.

  5. Optional: Remove the Oracle Linux .iso file from your orcharhino Server.

Alternatively, you can also host the content of the .iso file on an arbitrary web server that is reachable from your orcharhino Server. Change the path to the Oracle Linux medium in the installation media entry accordingly.

Setting Up Installation Media for Oracle Linux 9

Adjust the repository paths of the installation medium for Oracle Linux 9.

Procedure
  1. In the orcharhino management UI, navigate to Hosts > Installation Media.

  2. Select your installation medium for Oracle Linux 9.

  3. Enter the Path to the BaseOS directory within the extracted installation medium.

  4. Click Submit to save your change.

  5. On your orcharhino Server, create a symbolic link in the /BaseOS path for this version:

    # cd /var/www/html/pub/installation_media/ol/9/BaseOS
    # ln -s ../images

    This is required for orcharhino to find the kernel and initrd files which are used for network based installations of hosts running Oracle Linux 9.

Setting Up Installation Media for Oracle Linux 8

Adjust the repository paths of the installation medium for Oracle Linux 8.

Procedure
  1. In the orcharhino management UI, navigate to Hosts > Installation Media.

  2. Select your installation medium for Oracle Linux 8.

  3. Enter the Path to the BaseOS directory within the extracted installation medium.

  4. Click Submit to save your change.

  5. Navigate to Hosts > Operating Systems.

  6. Select your operating system entry for Oracle linux 8.

  7. On the Parameters tab, enter the path to the AppStream repository within the extracted installation medium. Set the variable additional_media as type string with the value [{"url": "http://orcharhino.example.com/pub/installation_media/ol/8/AppStream/", "name": "AppStream"}].

  8. On your orcharhino Server, create a symbolic link in the /BaseOS path for this version:

    # cd /var/www/html/pub/installation_media/ol/8/BaseOS
    # ln -s ../images

    This is required for orcharhino to find the kernel and initrd files which are used for network based installations of hosts running Oracle Linux 8.

The text and illustrations on this page are licensed by ATIX AG under a Creative Commons Attribution–Share Alike 3.0 Unported ("CC-BY-SA") license. This page also contains text from the official Foreman documentation which uses the same license ("CC-BY-SA").