Skip to content

Commit f051c02

Browse files
committed
Create MicroShift iso using image mode and bootc image builder
With 4.18 microshift removed the steps of creating the iso using image builder and there is no more `build.sh` script which is consumed by mircoshift.sh script to create it. This PR use the image mode and bootc image builder (BIB) to create the iso which is now microshift team also pushing forward.
1 parent 541baac commit f051c02

File tree

5 files changed

+304
-115
lines changed

5 files changed

+304
-115
lines changed

image-mode/microshift/build.sh

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
#!/bin/bash
2+
set -eo pipefail
3+
4+
ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../../" && pwd )"
5+
SCRIPTDIR=${ROOTDIR}/image-mode/microshift
6+
IMGNAME=microshift
7+
MICROSHIFT_VERSION=4.18
8+
BUILD_ARCH=$(uname -m)
9+
OSVERSION=$(awk -F: '{print $5}' /etc/system-release-cpe)
10+
LVM_SYSROOT_SIZE_MIN=10240
11+
LVM_SYSROOT_SIZE=${LVM_SYSROOT_SIZE_MIN}
12+
OCP_PULL_SECRET_FILE=
13+
AUTHORIZED_KEYS_FILE=
14+
AUTHORIZED_KEYS=
15+
USE_MIRROR_REPO=
16+
17+
# shellcheck disable=SC2034
18+
STARTTIME="$(date +%s)"
19+
BUILDDIR=${BUILDDIR:-${ROOTDIR}/_output/image-mode}
20+
21+
usage() {
22+
local error_message="$1"
23+
24+
if [ -n "${error_message}" ]; then
25+
echo "ERROR: ${error_message}"
26+
echo
27+
fi
28+
29+
echo "Usage: $(basename "$0") <-pull_secret_file path_to_file> [OPTION]..."
30+
echo ""
31+
echo " -pull_secret_file path_to_file"
32+
echo " Path to a file containing the OpenShift pull secret, which can be"
33+
echo " obtained from https://console.redhat.com/openshift/downloads#tool-pull-secret"
34+
echo ""
35+
echo "Optional arguments:"
36+
echo " -lvm_sysroot_size num_in_MB"
37+
echo " Size of the system root LVM partition. The remaining"
38+
echo " disk space will be allocated for data (default: ${LVM_SYSROOT_SIZE})"
39+
echo " -authorized_keys_file path_to_file"
40+
echo " Path to an SSH authorized_keys file to allow SSH access"
41+
echo " into the default 'redhat' account"
42+
echo " -use-mirror-repo <mirror_repo>"
43+
echo " Use mirror repo to get release candidate and engineering preview rpms"
44+
echo " like (https://mirror.openshift.com/pub/openshift-v4/x86_64/microshift/ocp-dev-preview/latest-4.18/el9/os/)"
45+
echo " -microshift-version <microshift-version>"
46+
echo " Version of microshift for image generation (default: ${MICROSHIFT_VERSION}"
47+
echo " -hostname <hostname>"
48+
echo " Hostname of the machine"
49+
exit 1
50+
}
51+
52+
title() {
53+
echo -e "\E[34m\n# $1\E[00m"
54+
}
55+
56+
# Parse the command line
57+
while [ $# -gt 0 ] ; do
58+
case $1 in
59+
-pull_secret_file)
60+
shift
61+
OCP_PULL_SECRET_FILE="$1"
62+
[ -z "${OCP_PULL_SECRET_FILE}" ] && usage "Pull secret file not specified"
63+
[ ! -s "${OCP_PULL_SECRET_FILE}" ] && usage "Empty or missing pull secret file"
64+
shift
65+
;;
66+
-lvm_sysroot_size)
67+
shift
68+
LVM_SYSROOT_SIZE="$1"
69+
[ -z "${LVM_SYSROOT_SIZE}" ] && usage "System root LVM partition size not specified"
70+
[ "${LVM_SYSROOT_SIZE}" -lt ${LVM_SYSROOT_SIZE_MIN} ] && usage "System root LVM partition size cannot be smaller than ${LVM_SYSROOT_SIZE_MIN}MB"
71+
shift
72+
;;
73+
-authorized_keys_file)
74+
shift
75+
AUTHORIZED_KEYS_FILE="$1"
76+
[ -z "${AUTHORIZED_KEYS_FILE}" ] && usage "Authorized keys file not specified"
77+
shift
78+
;;
79+
-use-mirror-repo)
80+
shift
81+
USE_MIRROR_REPO="$1"
82+
[ -z "${USE_MIRROR_REPO}" ] && usage "Mirror repo not specified"
83+
shift
84+
;;
85+
-ushift-version)
86+
shift
87+
MICROSHIFT_VERSION="$1"
88+
[ -z "${MICROSHIFT_VERSION}" ] && usage "MicroShift version not specified"
89+
shift
90+
;;
91+
-hostname)
92+
shift
93+
HOSTNAME="$1"
94+
[ -z "${HOSTNAME}" ] && usage "hostname not specified"
95+
shift
96+
;;
97+
*)
98+
usage
99+
;;
100+
esac
101+
done
102+
103+
if [ ! -r "${OCP_PULL_SECRET_FILE}" ] ; then
104+
echo "ERROR: pull_secret_file file does not exist or not readable: ${OCP_PULL_SECRET_FILE}"
105+
exit 1
106+
fi
107+
if [ -n "${AUTHORIZED_KEYS_FILE}" ]; then
108+
if [ ! -e "${AUTHORIZED_KEYS_FILE}" ]; then
109+
echo "ERROR: authorized_keys_file does not exist: ${AUTHORIZED_KEYS_FILE}"
110+
exit 1
111+
else
112+
AUTHORIZED_KEYS=$(cat "${AUTHORIZED_KEYS_FILE}")
113+
fi
114+
fi
115+
116+
mkdir -p "${BUILDDIR}"
117+
118+
title "Preparing kickstart config"
119+
# Create a kickstart file from a template, compacting pull secret contents if necessary
120+
cat < "${SCRIPTDIR}/config/config.toml.template" \
121+
| sed "s;REPLACE_HOSTNAME;${HOSTNAME};g" \
122+
| sed "s;REPLACE_LVM_SYSROOT_SIZE;${LVM_SYSROOT_SIZE};g" \
123+
| sed "s;REPLACE_OCP_PULL_SECRET_CONTENTS;$(cat < "${OCP_PULL_SECRET_FILE}" | jq -c);g" \
124+
| sed "s^REPLACE_CORE_AUTHORIZED_KEYS_CONTENTS^${AUTHORIZED_KEYS}^g" \
125+
> "${BUILDDIR}"/config.toml
126+
127+
title "Building bootc image for microshift"
128+
sudo podman build --authfile ${OCP_PULL_SECRET_FILE} -t ${IMGNAME}:${MICROSHIFT_VERSION} \
129+
--build-arg USHIFT_VER=${MICROSHIFT_VERSION} \
130+
--env MIRROR_REPO=${USE_MIRROR_REPO} \
131+
-f "${SCRIPTDIR}/config/Containerfile.bootc-rhel9"
132+
133+
# As of now we are generating the ISO to have same previous behavior
134+
# TODO: Try to use qcow2 directly for vm creation
135+
title "Creating ISO image"
136+
sudo podman run --authfile ${OCP_PULL_SECRET_FILE} --rm -it \
137+
--privileged \
138+
--security-opt label=type:unconfined_t \
139+
-v /var/lib/containers/storage:/var/lib/containers/storage \
140+
-v "${BUILDDIR}"/config.toml:/config.toml \
141+
-v "${BUILDDIR}":/output \
142+
registry.redhat.io/rhel9/bootc-image-builder:latest \
143+
--local \
144+
--type iso \
145+
--config /config.toml \
146+
localhost/${IMGNAME}:${MICROSHIFT_VERSION}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
FROM registry.redhat.io/rhel9/rhel-bootc:9.4
2+
3+
ARG MICROSHIFT_VER=4.18
4+
RUN if [ -z "${MIRROR_REPO}" ]; then \
5+
dnf config-manager --set-enabled "rhocp-${USHIFT_VER}-for-rhel-9-$(uname -m)-rpms" \
6+
--set-enabled "fast-datapath-for-rhel-9-$(uname -m)-rpms"; \
7+
else \
8+
# This is required to update the gpgcheck for repoID
9+
# Add the specified OpenShift v4 dependencies repository to get packages like crio, runc, openvswitch ..etc.
10+
# to which microshift package depend on for the current architecture and MICROSHIFT_VER version (e.g., 4.18).
11+
repoID=$(echo "${MIRROR_REPO#*://}" | tr '/:' '_'); \
12+
dnf config-manager --add-repo "${MIRROR_REPO}" \
13+
--add-repo "https://mirror.openshift.com/pub/openshift-v4/$(uname -m)/dependencies/rpms/${MICROSHIFT_VER}-el9-beta" \
14+
--set-enabled "fast-datapath-for-rhel-9-$(uname -m)-rpms"; \
15+
dnf config-manager --save --setopt="${repoID}".gpgcheck=0 --setopt=*-el9-beta.gpgcheck=0; \
16+
fi
17+
RUN dnf install -y firewalld microshift microshift-release-info cloud-utils-growpart qemu-guest-agent dnsmasq && \
18+
dnf clean all && rm -fr /etc/yum.repos.d/*
19+
20+
# https://github.com/containers/bootc/discussions/1036
21+
# /Users is created to make sure share directory works on
22+
# mac because on linux it is /home and for windows it is /mnt
23+
# and both are symlink to `var` already
24+
RUN rm -fr /opt && ln -sf var/opt /opt && mkdir /var/opt
25+
RUN ln -sf var/Users /Users && mkdir /var/Users
26+
27+
# Mandatory firewall configuration for microshift to work correctly
28+
RUN firewall-offline-cmd --zone=public --add-port=22/tcp && \
29+
firewall-offline-cmd --zone=trusted --add-source=10.42.0.0/16 && \
30+
firewall-offline-cmd --zone=trusted --add-source=169.254.169.1 && \
31+
firewall-offline-cmd --zone=trusted --add-source=fd01::/48
32+
# Application-specific firewall configuration to access route correctly
33+
RUN firewall-offline-cmd --zone=public --add-port=80/tcp && \
34+
firewall-offline-cmd --zone=public --add-port=443/tcp && \
35+
firewall-offline-cmd --zone=public --add-port=30000-32767/tcp && \
36+
firewall-offline-cmd --zone=public --add-port=30000-32767/udp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
[customizations.installer.kickstart]
2+
contents = """
3+
lang en_US.UTF-8
4+
keyboard us
5+
timezone UTC
6+
text
7+
reboot
8+
9+
# Configure network to use DHCP and activate on boot
10+
network --bootproto=dhcp --device=link --activate --onboot=on
11+
12+
# Partition disk with a 1MB BIOS boot, 200M EFI, 800M boot XFS partition and
13+
# an LVM volume containing a 10GB+ system root. The remainder of the volume
14+
# will be used by the CSI driver for storing data
15+
#
16+
# For example, a 20GB disk would be partitioned in the following way:
17+
#
18+
# NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
19+
# sda 8:0 0 20G 0 disk
20+
# ├─sda1 8:1 0 1M 0 part
21+
# ├─sda2 8:2 0 200M 0 part /boot/efi
22+
# ├─sda3 8:3 0 800M 0 part /boot
23+
# └─sda4 8:4 0 19G 0 part
24+
# └─rhel-root 253:0 0 10G 0 lvm /sysroot
25+
#
26+
zerombr
27+
clearpart --all --disklabel gpt
28+
part biosboot --fstype=biosboot --size=1
29+
part /boot/efi --fstype=efi --size=200
30+
part /boot --fstype=xfs --asprimary --size=800
31+
# Uncomment this line to add a SWAP partition of the recommended size
32+
#part swap --fstype=swap --recommended
33+
part pv.01 --grow
34+
volgroup rhel pv.01
35+
logvol / --vgname=rhel --fstype=xfs --size=REPLACE_LVM_SYSROOT_SIZE --name=root
36+
37+
# Lock root user account
38+
rootpw --lock
39+
40+
41+
%post --log=/var/log/anaconda/post-install.log --erroronfail
42+
43+
# The pull secret is mandatory for MicroShift builds on top of OpenShift, but not OKD
44+
# The /etc/crio/crio.conf.d/microshift.conf references the /etc/crio/openshift-pull-secret file
45+
cat > /etc/crio/openshift-pull-secret <<EOF
46+
REPLACE_OCP_PULL_SECRET_CONTENTS
47+
EOF
48+
chmod 600 /etc/crio/openshift-pull-secret
49+
50+
# Create a default core user, allowing it to run sudo commands without password
51+
useradd -m -d /home/core core
52+
echo -e 'core\tALL=(ALL)\tNOPASSWD: ALL' > /etc/sudoers.d/microshift
53+
54+
# Add authorized ssh keys
55+
mkdir -m 700 /home/core/.ssh
56+
cat > /home/core/.ssh/authorized_keys <<EOF
57+
REPLACE_CORE_AUTHORIZED_KEYS_CONTENTS
58+
EOF
59+
chmod 600 /home/core/.ssh/authorized_keys
60+
61+
62+
# Set static hostname
63+
echo "REPLACE_HOSTNAME" > /etc/hostname
64+
chmod 644 /etc/hostname
65+
66+
# Configure the firewall (rules reload is not necessary here)
67+
firewall-offline-cmd --zone=trusted --add-source=10.42.0.0/16
68+
firewall-offline-cmd --zone=trusted --add-source=169.254.169.1
69+
70+
71+
# Configure systemd journal service to persist logs between boots and limit their size to 1G
72+
sudo mkdir -p /etc/systemd/journald.conf.d
73+
cat > /etc/systemd/journald.conf.d/microshift.conf <<EOF
74+
[Journal]
75+
Storage=persistent
76+
EOF
77+
78+
# Support to boot for UEFI and legacy mode
79+
grub2-install --target=i386-pc /dev/vda
80+
81+
# Make podman rootless available
82+
mkdir -p /home/core/.config/systemd/user/default.target.wants
83+
ln -s /usr/lib/systemd/user/podman.socket /home/core/.config/systemd/user/default.target.wants/podman.socket
84+
85+
mkdir -p /home/core/.config/containers
86+
tee /home/core/.config/containers/containers.conf <<EOF
87+
[containers]
88+
netns="bridge"
89+
rootless_networking="cni"
90+
EOF
91+
92+
# Make sure core user directory contents ownership is correct
93+
chown -R core:core /home/core/
94+
95+
touch /etc/containers/podman-machine
96+
97+
tee /etc/containers/registries.conf.d/999-podman-machine.conf <<EOF
98+
unqualified-search-registries=["docker.io"]
99+
EOF
100+
101+
# Enable linger for core user to make sure podman socket work when user not logged in
102+
mkdir -p /var/lib/systemd/linger/
103+
touch /var/lib/systemd/linger/core
104+
%end
105+
"""

0 commit comments

Comments
 (0)