Installing prerequisites

You must install the required tools on the Logical Partition (LPAR) before starting the deployment process.

NOTE: The following steps were executed and tested on a LPAR with RHEL 9.5 version.

  1. Create an install_tools.sh manifest file according to the following example:
    yum update -y
    yum install docker
    yum install tree
    yum install -y make git vim zip wget pkg-config rpm bubblewrap
    yum install -y qemu-img openssl-devel
    yum groupinstall -y "Development Tools"
  2. Create the script by running the following command:
    $ oc create install_tools.sh
  3. Make the install_tools.sh script executable by running the following command:
    $ chmod 711 install_tools.sh
  4. Run the script:
    $ ./install_tools.sh