RHEL and Palette eXtended Kubernetes
This guide teaches you how to use the CAPI Image Builder tool to create a custom Red Hat Enterprise Linux (RHEL) image with Palette eXtended Kubernetes (PXK) for VMware vSphere and use the image to create a cluster profile.
Prerequisites
-
Access to the VMware vSphere environment, including credentials and permission to create virtual machines.
-
A valid RHEL subscription. You will need to provide the username and password for the subscription during the build process.
-
Access to the Red Hat Developer Portal.
-
The machine executing the commands must have the following hardware resources available:
- 4 CPU
- 8 GB of RAM
- 50 GB of free disk space
-
The following software installed:
-
(Optional) Any custom Bash scripts (
.sh
files) that you want to execute when creating your RHEL image. Custom scripts are supported beginning with CAPI Image Builder version 4.6.23.
Build Custom Image
-
Open up a terminal session on your Linux machine and download the CAPI Image Builder, replacing
<tag>
with your desired CAPI Image Builder version. This guide uses version 4.6.23 as an example. Refer to the CAPI Image Builder Downloads page for the latest version.- Docker
- Podman
docker pull us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder:<tag>
Confirm that the image was downloaded correctly.
docker images
Example outputREPOSITORY TAG IMAGE ID CREATED SIZE
us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder v4.6.23 2adff15eee2d 7 days ago 2.47 GBpodman pull us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder:<tag>
Confirm that the image was downloaded correctly.
podman images
Example outputREPOSITORY TAG IMAGE ID CREATED SIZE
us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder v4.6.23 2adff15eee2d 7 days ago 2.47 GB -
Create an
output
directory to store the image files and set the required permissions. Replace<username>
with your Linux username.mkdir /home/<username>/output
chmod a+rwx /home/<username>/output -
Navigate to the
output
directory. Replace<username>
with your Linux username.cd /home/<username>/output
-
Download the desired RHEL 8 or RHEL 9 ISO file from the Red Hat Developer Portal into the
output
directory. Ensure you download ax86_64-dvd.iso
file and not ax86_64-boot.iso
file.Replace
<iso-file-download-link>
in the command below with the direct RHEL ISO download link. This link can be obtained by beginning a download and opening your browser's web developer tools. Navigate to the Network section, and select thegetting-started
file. TheDownloadURL
is found in the Headers section.This guide uses RHEL 8.8 as an example. Refer to the Configuration Reference page for details on supported operating systems.
curl <iso-file-download-link> --output rhel-8.8-x86_64-dvd.iso
-
Calculate the SHA256 checksum for the RHEL ISO you downloaded. The calculation might take a few minutes. Save the output, as you will need it later.
sha256sum rhel-8.8-x86_64-dvd.iso
The output should be similar to the sample output displayed below.
Example RHEL SHA517abcc67ee3b7212f57e180f5d30be3e8269e7a99e127a3399b7935c7e00a09 rhel-8.8-x86_64-dvd.iso
-
Download the
imageconfig
template file.curl https://software.spectrocloud.com/tools/capi-image-builder/imageconfig --output imageconfig
-
Open the
imageconfig
template file in an editor of your choice and fill in the required parameters. For a complete list of parameters, refer to the Configuration Reference page. Additionally, refer to the Compatibility Matrix for a list of supported Kubernetes versions and their corresponding dependencies.The
imageconfig
file is the file used to personalize the base CAPI image for your cluster, which you can alter to fit your needs. This includes specifying the OS type, Kubernetes version, whether the image should be FIPS compliant, and more.Use the example configuration below to configure a RHEL 8 CAPI image. Replace
<rhel-subscription-email>
and<rhel-subscription-password>
with your RHEL subscription credentials. Use the SHA256 checksum of the RHEL ISO from step 5 of this guide for<iso-checksum>
. Additionally, replace the VMware-related placeholders with the values from your VMware vSphere environment.# Define the OS type and version here
# os_version=rhel-8 | rhel-9 | rockylinux-8 | rockylinux-9
# image_type=standard | fips
os_version=rhel-8
image_type=standard
# Define the image name
# image_name=<Final Image Name to create>
image_name=rhel-8
# Define the Cloud type
# cloud_type=vmware
cloud_type=vmware
# Define the Component Versions
#
# containerd crictl and cni version update should be done
# only if the images are available in the upstream repositories
k8s_version=1.30.4
cni_version=1.3.0
containerd_version=1.7.13
crictl_version=1.28.0
# Define RHEL subscription credentials(if $image_type=rhel)
# used while image creation to use package manager
rhel_subscription_user=<rhel-subscription-email>
rhel_subscription_pass=<rhel-subscription-password>
# Define ISO url(if image is rhel or rockylinux)
iso_name=rhel-8.8-x86_64-dvd.iso
iso_checksum=<iso-checksum>
# Define AWS infra details
aws_access_key=
aws_secret_key=
# Define Vmware infra details
vcenter_server=<vcenter-server>
vcenter_user=<vcenter-user>
vcenter_password=<vcenter-password>
vcenter_datacenter=<vcenter-datacenter>
vcenter_datastore=<vcenter-datastore>
vcenter_network=<vcenter-network>
vcenter_folder=<vcenter-folder>
vcenter_cluster=<vcenter-cluster>
vcenter_resource_pool=<vcenter-resource-pool>
# Optional: for OVA based builds
vcenter_template=
# Define Azure infra details
azure_client_id=
azure_client_secret=
azure_subscription_id=
azure_location=
azure_storage_account=
azure_resource_group=
# Define GCE infra details
google_app_creds=
gcp_project_id=
# Airgap Configuration
airgap=false
airgap_ip=""
k8s_rpm_key=
k8s_rpm_server=
containerd_url=
crictl_url=
k8s_container_reg=
cert_url=tipTo build a FIPS-compliant image, set
image_type
tofips
.Once you are finished making changes, save and exit the file.
-
(Optional) You can add custom Bash scripts (
.sh
files) to run before or after the build process. This feature is available beginning with CAPI Image Builder version 4.6.23. If any scripts are found in the relevant directories, they are copied to an Ansible playbook. If you do not want to add custom scripts, skip this step.Add Pre- and Post-Install Bash Scripts
-
In the
output
directory, create the directoriescustom_scripts/pre
andcustom_scripts/post
.mkdir -p custom_scripts/pre custom_scripts/post
-
Move any scripts that you want to be executed before the build process to the
pre
directory. Move any scripts that you want to be executed after the build process to thepost
directory. Ensure the scripts are executable.Below is an example of moving a pre-install script to the appropriate
pre
directory and making it executable.Example of moving a script and modifying permissionsmv sample-script.sh custom_scripts/pre/sample-script.sh
chmod +x custom_scripts/pre/sample-script.sh
-
-
Issue the command below to start the CAPI Image Builder container and assign the container ID to the
BUILD_ID
variable. The tool will create and configure a VM with Dynamic Host Configuration Protocol (DHCP) in your VMware vSphere environment using theimage_name
defined inimageconfig
. For this guide, the VM is namedrhel-8
. The tool will then generate a RHEL 8 CAPI image from the VM and save it to theoutput
directory.Replace
<username>
with your Linux username and<tag>
with your CAPI Image Builder version.- Docker
- Podman
BUILD_ID=$(docker run --net=host --volume /home/<username>/output:/home/imagebuilder/output --detach us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder:<tag>)
BUILD_ID=$(podman run --net=host --volume /home/<username>/output:/home/imagebuilder/output --detach us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder:<tag>)
If you need the VM to use static IP placement instead of DHCP, follow the steps described below.
CAPI Image Builder with Static IP Placement
-
Download the RHEL 8
ks.cfg
file from the Image Builder GitHub repository directly into the output folder.curl --location https://github.com/kubernetes-sigs/image-builder/raw/main/images/capi/packer/ova/linux/rhel/http/8/ks.cfg.tmpl --output ks.cfg
-
Open the
ks.cfg
file in an editor of your choice. Locate and replace the network linesnetwork --bootproto=dhcp --device=link --activate
andnetwork --hostname=rhel8
with the configuration below.network --bootproto=static --ip=<vcenter-static-ip-address> --netmask=<vcenter-netmask> --gateway=<vcenter-gateway> --nameserver=<vcenter-nameserver>
Replace
<vcenter-static-ip-address>
with a valid IP address from your VMware vSphere environment and<vcenter-netmask>
,<vcenter-gateway>
, and<vcenter-nameserver>
with the correct values from your VMware vSphere environment. The<vcenter-netmask>
parameter must be specified in dotted decimal notation, for example,--netmask=255.255.255.0
.Once you are finished making changes, save and exit the file.
-
Issue the command below to start the CAPI Image Builder container and assign the container ID to the
BUILD_ID
variable. The tool will use theimageconfig
file to create and configure a VM with static IP placement in your VMware vSphere environment. Replace<username>
with your Linux username and<tag>
with your CAPI Image Builder version.- Docker
- Podman
BUILD_ID=$(docker run --net=host --volume /home/<username>/output:/home/imagebuilder/output --detach us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder:<tag>)
BUILD_ID=$(podman run --net=host --volume /home/<username>/output:/home/imagebuilder/output --detach us-docker.pkg.dev/palette-images/palette/imagebuilder/capi-builder:<tag>)
-
Execute the following command to view the CAPI Image Builder container logs and monitor the build progress. If you added any custom scripts in step 8, the output will be displayed in the build log.
- Docker
- Podman
docker logs --follow $BUILD_ID
podman logs --follow $BUILD_ID
infoIt may take a few minutes for the logs to start being displayed, and the build takes several minutes to complete.
-
Once the build is complete, the RHEL 8 CAPI image will be downloaded to the
output
directory as theimage_name
specified in theimageconfig
file. For this example, the image isrhel-8
. Once the image is created, the VM is deleted from VMware vSphere.Issue the command below to confirm that the build files are present in the
output
directory, replacingrhel-8
with your specifiedimage_name
, if different.ls rhel-8
Example outputpacker-manifest.json rhel-8-disk-0.vmdk rhel-8-kube-v1.30.4.mf rhel-8-kube-v1.30.4.ova rhel-8-kube-v1.30.4.ova.sha256 rhel-8-kube-v1.30.4.ovf rhel-8.ovf
-
To make the image available in VMware vSphere, log in to your environment and locate the
vcenter_folder
defined in theimageconfig
in step 7 of this guide.tipYou can also use the following steps to make the image available in a VMware vSphere environment that is not connected to the one you used for building the image.
-
Right-click the folder and select Deploy OVF Template to deploy a VM using the RHEL 8 OVA file that was built in step 9 of this guide.
-
In the Deploy OVF Template wizard, select Local File > Upload Files, and choose the OVA file located in the
output
folder on your local machine. This guide usesrhel-8-kube-v1.30.4.ova
as an example. Select Next to continue. -
Assign a name to the virtual machine, such as
rhel-8-kube-v1.30.4
, and choose the folder you created previously as the target location. Select Next to proceed. -
Choose a compute resource and select Next.
-
Review the VM configuration, accept the license agreements, and select Next.
-
Choose the storage location and network configuration and select Next. Then, select Finish to deploy the VM.
warningIt takes a while for the VM to deploy, approximately 45 minutes or more, depending on your internet connection. The download of the OVA file takes the majority of the time. You can monitor the progress of this process in VMware vSphere by looking at the Recent Tasks tab and filtering the Task Name column by
Deploy OVF Template
. -
Once the VM is created, right-click it and select Convert to Template. This will convert the VM into a RHEL 8 image template that you can reference during the cluster profile creation.
Validate
-
Log in to the VMware vSphere environment and navigate to the Inventory view.
-
Select the VMs and Templates tab and verify the custom RHEL 8 image is available.
Create Cluster Profile
The RHEL 8 image is now built and available in the VMware vSphere environment. You can use it to create a cluster profile and deploy a VMware host cluster.
-
Log in to Palette.
-
From the left main menu, select Profiles > Add Cluster Profile.
-
In the Basic Information section, assign the cluster profile a Name, brief Description, and Tags. Choose Full for the profile Type and select Next.
-
In the Cloud Type section, choose VMware vSphere and select Next.
-
The Profile Layers section is where you specify the packs that compose the profile. For this guide, use the following packs.
Pack Name Version Layer BYOOS 1.0.0 Operating System Palette eXtended Kubernetes 1.30.4 Kubernetes Cilium 1.15.3 Network vSphere CSI 3.2.0 Storage Reference the custom RHEL 8 image template path in your VMware vSphere environment when populating the pack details for the BYOOS layer.
Example YAML configurationpack:
osImageOverride: "/Datacenter/vm/sp-docs/rhel-8-kube-v1.30.4"
osName: "rhel"
osVersion: "8"As you fill out the information for each layer, select Next to proceed.
warningThe Palette eXtended Kubernetes pack version must match the
k8s_version
specified in theimageconfig
file. -
Review the profile layers and select Finish Configuration to create the cluster profile.
Validate
-
Log in to Palette.
-
From the left main menu, select Profiles. Verify that your new cluster profile is available.
Next Steps
After you have created an OS image with CAPI Image Builder and have it referenced in a cluster profile, you can deploy a VMware host cluster using the created cluster profile. Refer to the Deploy App Workloads with a PCG tutorial for instructions on deploying a VMware host cluster.