Chapter 5. Deploying a RHEL for Edge image
You can deploy a RHEL for Edge image using the RHEL installer graphical user interface or a Kickstart file.
To deploy the images on bare metal, use a Kickstart file.
Deploying a RHEL for Edge image involves the following high-level steps:
- Extract the image file contents. See Section 3.4, “Downloading a RHEL for Edge image” for information on how to download the RHEL for Edge image
- Set up a web server
- Install the image
5.1. Extracting RHEL for Edge image commit
After you download the commit, extract the .tar file and note the ref name and the commit ID.
The downloaded commit file consists of a .tar
file with an OSTree repository. The OSTree repository contains a commit and a compose.json
file.
The compose.json file contains information metadata about the commit with information such as the “Ref” (reference ID) and the commit ID. The commit contains the rpm packages.
To extract the package contents, perform the following the steps:
Prerequisites
- Create a kickstart file or use an existing one
Procedure
Extract the downloaded image tar file:
# tar xvf <UUID>-commit.tar
Navigate to the directory where you have extracted the
.tar
file.It contains a
compose.json
file and a OSTree directory. Thecompose.json
file contains the commit number and the OSTree directory contains the rpm packages.-
Open the
compose.json
file and note the commit ID number. You need this number handy when you proceed to set up a web server. List the
rpm
packages in the commit.# rpm-ostree db list rhel/8/x86_64/edge --repo=repo
Use a Kickstart file to run the RHEL installer. You can either use any existing file or can create one using the Kickstart Generator tool.
In the Kickstart file, ensure that you include the details about how to provision the file system, create a user, and how to fetch and deploy the RHEL for Edge image. The RHEL installer uses this information during the installation process.
The following is a Kickstart file example:
lang en_US.UTF-8 keyboard us timezone Etc/UTC --isUtc text zerombr clearpart --all --initlabel autopart reboot user --name=core --group=wheel sshkey --username=core "ssh-rsa AAAA3Nza...." ostreesetup --nogpg --osname=rhel --remote=edge --url=https://mirror.example.com/repo/ --ref=rhel/8/x86_64/edge
Additional resources
For more details on how to create a Kickstart file, see:
5.2. Setting up a web server to install RHEL for Edge image
After you have extracted the RHEL for Edge image contents, set up a web server to provide the image commit details to the RHEL installer via HTTP.
The following example provides the steps to set up a web server using a container.
Prerequisites
- You have installed Podman on your system. See How do I install podman in RHEL 8
Procedure
Create a dockerfile.
On the command prompt, run the following commands:
FROM registry.access.redhat.com/ubi8/ubi RUN yum -y install httpd && yum clean all ADD kickstart.ks /var/www/html/ ARG commit=commit.tar ADD $commit /var/www/html/ EXPOSE 80 CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]
Where,
kickstart.ks is the name of the Kickstart file from the RHEL for Edge image. The kickstart file includes directive information. To help you manage the images later, it is advisable to include the checks and settings for Greenboot checks. To do so, you can update the Kickstart file to include the following settings:
/etc/greenboot/check/required.d/check-dns.sh #!/bin/bash DNS_SERVER=$(grep nameserver /etc/resolv.conf | cut -f2 -d" ") COUNT=0 # check DNS server is available ping -c1 $DNS_SERVER while [ $? != '0' ] && [ $COUNT -lt 10 ]; do ((COUNT++)) echo "Checking for DNS: Attempt $COUNT ." sleep 10 ping -c 1 $DNS_SERVER done
- Commit.tar is the image commit number
`/var/www/html` is the location where the commit is saved. You can choose a different location to save the commit.
The ostree repo can be hosted from any HTTP server/service, and that the example, using a container, is just an option for how to do this. The docker file performs the following tasks:
- Uses the latest Universal Base Image (ubi)
- Installs the web server (httpd)
- Adds the kickstart file to the server
Adds the RHEL for Edge image commit to the server
The line
ARG commit=commit.tar
allows you to specify future commits using the command-line.
Build a docker container
# podman build -t name-of-container-image --build-arg commit=uuid-commit.tar .
Run the container
# podman run --rm -d -p port:80 localhost/name-of-container-image
As a result, the server is set up and ready to launch the RHEL installer using the
commit.tar
repository and the kickstart file.
5.3. Downloading RHEL Boot.iso image
You can download a Red Hat Boot ISO image from the Red Hat Customer Portal. The Red Hat Boot ISO image is used to launch the RHEL installer. The installer fetches the Kickstart file that you provide for installing RHEL for Edge images.
Prerequisites
- You have an active Red Hat subscription.
- You are logged in to the Product Downloads section of the Red Hat Customer Portal at https://access.redhat.com/downloads.
Procedure
- Open a browser an access https://access.redhat.com/downloads.
- the Red Hat Enterprise Linux 8.
- CLick the button for the option "Red Hat Enterprise Linux 8.2 Boot ISO"
For more information about downloading Boot.iso image, see Downloading the installation ISO image.
5.4. Installing the RHEL for Edge image using a Kickstart file
To install the RHEL for Edge image using a Kickstart file, use the web server. The web server uses the RHEL for Edge image commit.tar repository and the kickstart file to launch the RHEL installer.
Prerequisites
- The server to fetch the commit in the Installer is available and running.
- A disk image to install the commit you created.
Procedure
Run the Anaconda Installer using the libvirt virt-install:
virt-install --name rhel-edge-test-1 --memory 2048 --vcpus 2 --disk path=prepared_disk_image.qcow2,format=qcow2 --os-variant rhel8.0 --cdrom /home/username/Downloads/rhel8-edge.iso
On the installation screen, press
to specify an additional kernel parameter:inst.ks=http://edge_device_ip:port/kickstart.ks
The kernel parameter specifies that you want to install RHEL using the Kickstart file and not the RHEL image contained in the RHEL Installer.
The RHEL Installer starts, fetches the Kickstart file from the server (HTTP) endpoint and executes the commands, including the command to install the RHEL for Edge image commit from the HTTP endpoint. Once the installation is complete, the installer prompts for login details.
- On the Login screen, specify your user account credentials and click .
Verify whether the RHEL for Edge image is successfully installed.
$ rpm-ostree status
The command output provides the image commit ID and shows that the installation is successful.
Following is a sample output:
State: idle Deployments: * ostree://edge:rhel/8/x86_64/edge Timestamp: 2020-09-18T20:06:54Z Commit: 836e637095554e0b634a0a48ea05c75280519dd6576a392635e6fa7d4d5e96