forked from crc-org/snc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createdisk-library.sh
executable file
·459 lines (369 loc) · 16.9 KB
/
createdisk-library.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
#!/bin/bash
set -exuo pipefail
function get_dest_dir_suffix {
local version=$1
DEST_DIR_SUFFIX="${version}_${yq_ARCH}"
if [ -n "${PULL_NUMBER-}" ]; then
DEST_DIR_SUFFIX="$DEST_DIR_SUFFIX.pr${PULL_NUMBER}"
fi
}
# This removes extra os tree layers, log files, ... from the image
function cleanup_vm_image() {
local vm_name=$1
local vm_ip=$2
# Shutdown and Start the VM to get the latest ostree layer. If packages
# have been added/removed since last boot, the VM will reboot in a different ostree layer.
shutdown_vm ${vm_name}
start_vm ${vm_name} ${vm_ip}
# Remove miscellaneous unneeded data from rpm-ostree
${SSH} core@${vm_ip} -- 'sudo rpm-ostree cleanup --rollback --base --repomd'
# Remove logs.
# Note: With `sudo journalctl --rotate --vacuum-time=1s`, it doesn't
# remove all the journal logs so separate commands are used here.
${SSH} core@${vm_ip} -- 'sudo journalctl --rotate'
${SSH} core@${vm_ip} -- 'sudo journalctl --vacuum-time=1s'
${SSH} core@${vm_ip} -- 'sudo find /var/log/ -iname "*.log" -exec rm -f {} \;'
# Shutdown and Start the VM after removing base deployment tree
# This is required because kernel commandline changed, namely
# ostree=/ostree/boot.1/fedora-coreos/$hash/0 which switches
# between boot.0 and boot.1 when cleanup is run
shutdown_vm ${vm_name}
start_vm ${vm_name} ${vm_ip}
}
function sparsify {
local baseDir=$1
local srcFile=$2
local destFile=$3
export LIBGUESTFS_BACKEND=direct
# Check which partition is labeled as `root`
partition=$(${VIRT_FILESYSTEMS} -a $baseDir/$srcFile -l --partitions | sort -rk4 -n | sed -n 1p | cut -f1 -d' ')
# check if the base image has the lvm named as `rhel/root`
if ${VIRT_FILESYSTEMS} --lvs -a ${baseDir}/${srcFile} | grep -q "rhel/root"; then
partition="/dev/rhel/root"
fi
# https://bugzilla.redhat.com/show_bug.cgi?id=1837765
export LIBGUESTFS_MEMSIZE=2048
# Interact with guestfish directly
eval $(echo nokey | ${GUESTFISH} --keys-from-stdin --listen )
if [ $? -ne 0 ]; then
echo "${GUESTFISH} failed to start, aborting"
exit 1
fi
${GUESTFISH} --remote <<EOF
add-drive $baseDir/$srcFile
run
EOF
${GUESTFISH} --remote mount $partition /
${GUESTFISH} --remote zero-free-space /boot/
if [ $? -ne 0 ]; then
echo "Failed to sparsify $baseDir/$srcFile, aborting"
exit 1
fi
${GUESTFISH} --remote -- exit
${QEMU_IMG} convert -f qcow2 -O qcow2 -o lazy_refcounts=on $baseDir/$srcFile $baseDir/$destFile
if [ $? -ne 0 ]; then
echo "Failed to sparsify $baseDir/$srcFile, aborting"
exit 1
fi
rm -fr $baseDir/.guestfs-*
}
function create_qemu_image {
local destDir=$1
local base=$2
local overlay=$3
# ${overlay} won't exist in some cases, for example when using microshift
if [ -f /var/lib/libvirt/images/${overlay} ]; then
sudo cp /var/lib/libvirt/images/${overlay} ${destDir}
elif [ -f /var/lib/libvirt/images/${base} ]; then
sudo cp /var/lib/libvirt/images/${base} ${destDir}
else
sudo cp /var/lib/libvirt/openshift-images/${VM_PREFIX}/${overlay} ${destDir}
sudo cp /var/lib/libvirt/openshift-images/${VM_PREFIX}/${base} ${destDir}
fi
sudo chown $USER:$USER -R ${destDir}
if [ -f ${destDir}/${overlay} ]; then
${QEMU_IMG} rebase -f qcow2 -F qcow2 -b ${base} ${destDir}/${overlay}
${QEMU_IMG} commit ${destDir}/${overlay}
fi
sparsify ${destDir} ${base} ${overlay}
chmod 0644 ${destDir}/${overlay}
rm -fr ${destDir}/${base}
}
function create_bundle_qemu_image() {
local libvirtDestDir="$1"
local VM_PREFIX="$2"
local VM_NAME="$3"
if [ "${BUNDLE_TYPE}" != "microshift" ]; then
create_qemu_image "$libvirtDestDir" "${VM_PREFIX}-base" "${VM_NAME}"
mv "${libvirtDestDir}/${VM_NAME}" "${libvirtDestDir}/${SNC_PRODUCT_NAME}.qcow2"
else
create_qemu_image "$libvirtDestDir" "${VM_NAME}.qcow2" "microshift.qcow2"
mv "${libvirtDestDir}/microshift.qcow2" "${libvirtDestDir}/${SNC_PRODUCT_NAME}.qcow2"
fi
}
function update_json_description {
local srcDir=$1
local destDir=$2
local vm_name=$3
diskSize=$(du -b $destDir/${SNC_PRODUCT_NAME}.qcow2 | awk '{print $1}')
diskSha256Sum=$(sha256sum $destDir/${SNC_PRODUCT_NAME}.qcow2 | awk '{print $1}')
ocSize=$(du -b $destDir/oc | awk '{print $1}')
ocSha256Sum=$(sha256sum $destDir/oc | awk '{print $1}')
podmanSize=$(du -b $destDir/podman-remote | awk '{print $1}')
podmanSha256Sum=$(sha256sum $destDir/podman-remote | awk '{print $1}')
cat $srcDir/crc-bundle-info.json \
| ${JQ} ".name = \"${destDir}\"" \
| ${JQ} '.clusterInfo.sshPrivateKeyFile = "id_ecdsa_crc"' \
| ${JQ} '.clusterInfo.kubeConfig = "kubeconfig"' \
| ${JQ} '.nodes[0].kind[0] = "master"' \
| ${JQ} '.nodes[0].kind[1] = "worker"' \
| ${JQ} ".nodes[0].hostname = \"${vm_name}\"" \
| ${JQ} ".nodes[0].diskImage = \"${SNC_PRODUCT_NAME}.qcow2\"" \
| ${JQ} ".nodes[0].internalIP = \"${VM_IP}\"" \
| ${JQ} ".storage.diskImages[0].name = \"${SNC_PRODUCT_NAME}.qcow2\"" \
| ${JQ} '.storage.diskImages[0].format = "qcow2"' \
| ${JQ} ".storage.diskImages[0].size = \"${diskSize}\"" \
| ${JQ} ".storage.diskImages[0].sha256sum = \"${diskSha256Sum}\"" \
| ${JQ} ".storage.fileList[0].name = \"oc\"" \
| ${JQ} '.storage.fileList[0].type = "oc-executable"' \
| ${JQ} ".storage.fileList[0].size = \"${ocSize}\"" \
| ${JQ} ".storage.fileList[0].sha256sum = \"${ocSha256Sum}\"" \
| ${JQ} ".storage.fileList[1].name = \"podman-remote\"" \
| ${JQ} '.storage.fileList[1].type = "podman-executable"' \
| ${JQ} ".storage.fileList[1].size = \"${podmanSize}\"" \
| ${JQ} ".storage.fileList[1].sha256sum = \"${podmanSha256Sum}\"" \
| ${JQ} '.driverInfo.name = "libvirt"' \
>$destDir/crc-bundle-info.json
}
function eventually_add_pull_secret {
local destDir=$1
if [ "${BUNDLED_PULL_SECRET_PATH-}" != "" ]
then
cat "$BUNDLED_PULL_SECRET_PATH" > "$destDir/default-pull-secret"
cat $destDir/crc-bundle-info.json \
| ${JQ} '.clusterInfo.openshiftPullSecret = "default-pull-secret"' \
>$destDir/crc-bundle-info.json.tmp
mv $destDir/crc-bundle-info.json.tmp $destDir/crc-bundle-info.json
fi
}
function copy_additional_files {
local srcDir=$1
local destDir=$2
local vm_name=$3
# Copy the kubeconfig file
cp $1/auth/kubeconfig $destDir/
# Copy the master public key
cp id_ecdsa_crc $destDir/
chmod 400 $destDir/id_ecdsa_crc
# Copy oc client
cp openshift-clients/linux/oc $destDir/
cp podman-remote/linux/podman-remote $destDir/
update_json_description $srcDir $destDir $vm_name
eventually_add_pull_secret $destDir
}
function install_additional_packages() {
local vm_ip=$1
shift
if [[ ${BASE_OS} = "fedora-coreos" ]]; then
${SSH} core@${vm_ip} -- 'sudo sed -i -z s/enabled=0/enabled=1/ /etc/yum.repos.d/fedora.repo'
${SSH} core@${vm_ip} -- 'sudo sed -i -z s/enabled=0/enabled=1/ /etc/yum.repos.d/fedora-updates.repo'
${SSH} core@${vm_ip} -- "sudo rpm-ostree install --allow-inactive $*"
${SSH} core@${vm_ip} -- 'sudo sed -i -z s/enabled=1/enabled=0/ /etc/yum.repos.d/fedora.repo'
${SSH} core@${vm_ip} -- 'sudo sed -i -z s/enabled=1/enabled=0/ /etc/yum.repos.d/fedora-updates.repo'
else
# Download the hyperV daemons dependency on host
local pkgDir=$(mktemp -d tmp-rpmXXX)
mkdir -p ${pkgDir}/packages
sudo yum download --downloadonly --downloaddir ${pkgDir}/packages $* --resolve
# SCP the downloaded rpms to VM
${SCP} -r ${pkgDir}/packages core@${vm_ip}:/home/core/
# Install these rpms to VM
${SSH} core@${vm_ip} -- 'sudo rpm-ostree install /home/core/packages/*.rpm'
# Remove the packages from VM
${SSH} core@${vm_ip} -- rm -fr /home/core/packages
# Cleanup up packages
rm -fr ${pkgDir}
fi
}
# This is only needed for creating arm64 bundles until RHCOS switches to RHEL-9
function downgrade_rhel9_kernel {
local vm_ip=$1
local pkgDir=$(mktemp -d tmp-rpmXXX)
kernel_version=$(sudo dnf --quiet repoquery-na --queryformat '%{version}-%{release}.%{arch}' kernel.${ARCH} | grep el9_0 | tail -n 1)
mkdir -p ${pkgDir}/packages
sudo yum download --downloadonly --downloaddir ${pkgDir}/packages kernel-${kernel_version} kernel-modules-extra-${kernel_version} kernel-core-${kernel_version} kernel-modules-${kernel_version} --resolve
${SCP} -r ${pkgDir}/packages core@${vm_ip}:/home/core/
${SSH} core@${vm_ip} -- 'SYSTEMD_OFFLINE=1 sudo -E rpm-ostree override replace --remove=kernel-modules-core /home/core/packages/*.rpm'
${SSH} core@${vm_ip} -- rm -fr /home/core/packages
rm -fr ${pkgDir}
}
function prepare_cockpit() {
local vm_ip=$1
install_additional_packages ${vm_ip} cockpit-bridge cockpit-ws cockpit-podman
}
function prepare_hyperV() {
local vm_ip=$1
install_additional_packages ${vm_ip} hyperv-daemons
# Adding Hyper-V vsock support
${SSH} core@${vm_ip} 'sudo bash -x -s' <<EOF
echo 'CONST{virt}=="microsoft", RUN{builtin}+="kmod load hv_sock"' > /etc/udev/rules.d/90-crc-vsock.rules
EOF
}
function fix_selinux_policy_for_qemu_guest_agent() {
local vm_ip=$1
# RHEL default selinux policy blocks usage of qemu-guest-agent over vsock, we have to install
# our own selinux rules to allow this.
#
# we need to disable pipefail for the `checkmodule | grep check` as we expect `checkmodule`
# to fail on rhel8.
set +o pipefail
if ! checkmodule -c 19 2>&1 |grep 'invalid option' >/dev/null; then
# RHEL8 checkmodule does not have this arg
MOD_VERSION_ARG="-c 19"
fi
set -o pipefail
/usr/bin/checkmodule ${MOD_VERSION_ARG-} -M -m -o qemuga-vsock.mod qemuga-vsock.te
/usr/bin/semodule_package -o qemuga-vsock.pp -m qemuga-vsock.mod
${SCP} qemuga-vsock.pp core@${vm_ip}:
${SSH} core@${vm_ip} 'sudo semodule -i qemuga-vsock.pp && rm qemuga-vsock.pp'
}
function prepare_qemu_guest_agent() {
local vm_ip=$1
if [[ ${BASE_OS} != "fedora-coreos" ]]; then
fix_selinux_policy_for_qemu_guest_agent ${vm_ip}
fi
${SCP} qemu-guest-agent.service core@${vm_ip}:
${SSH} core@${vm_ip} 'sudo mv -Z qemu-guest-agent.service /etc/systemd/system/'
${SSH} core@${vm_ip} 'sudo systemctl daemon-reload'
${SSH} core@${vm_ip} 'sudo systemctl enable qemu-guest-agent.service'
}
function generate_vfkit_bundle {
local srcDir=$1
local destDir=$2
generate_macos_bundle "vfkit" "$@"
${QEMU_IMG} convert -f qcow2 -O raw $srcDir/${SNC_PRODUCT_NAME}.qcow2 $destDir/${SNC_PRODUCT_NAME}.img
add_disk_info_to_json_description "${destDir}" "${SNC_PRODUCT_NAME}.img" "raw"
create_tarball "$destDir"
}
function generate_macos_bundle {
local bundleType=$1
local srcDir=$2
local destDir=$3
local tmpDir=$4
local kernel_release=$5
local kernel_cmd_line=$6
mkdir -p "$destDir"
cp $srcDir/kubeconfig $destDir/
cp $srcDir/id_ecdsa_crc $destDir/
cp $tmpDir/vmlinuz-${kernel_release} $destDir/
cp $tmpDir/initramfs-${kernel_release}.img $destDir/
# Copy oc client
cp openshift-clients/mac/oc $destDir/
# aarch64 only supports uncompressed kernels, see
# https://github.com/code-ready/vfkit/commit/4aaa4fbdc76f9fc0ccec2b9fda25c5235664e7d6
# for more details
if [ "${ARCH}" == "aarch64" ]; then
mv $destDir/vmlinuz-${kernel_release} $destDir/vmlinuz-${kernel_release}.gz
gunzip $destDir/vmlinuz-${kernel_release}.gz
fi
cp podman-remote/mac/podman $destDir/
ocSize=$(du -b $destDir/oc | awk '{print $1}')
ocSha256Sum=$(sha256sum $destDir/oc | awk '{print $1}')
podmanSize=$(du -b $destDir/podman | awk '{print $1}')
podmanSha256Sum=$(sha256sum $destDir/podman | awk '{print $1}')
# Update the bundle metadata info
cat $srcDir/crc-bundle-info.json \
| ${JQ} ".name = \"${destDir}\"" \
| ${JQ} ".nodes[0].kernel = \"vmlinuz-${kernel_release}\"" \
| ${JQ} ".nodes[0].initramfs = \"initramfs-${kernel_release}.img\"" \
| ${JQ} ".nodes[0].kernelCmdLine = \"${kernel_cmd_line}\"" \
| ${JQ} ".storage.fileList[0].name = \"oc\"" \
| ${JQ} '.storage.fileList[0].type = "oc-executable"' \
| ${JQ} ".storage.fileList[0].size = \"${ocSize}\"" \
| ${JQ} ".storage.fileList[0].sha256sum = \"${ocSha256Sum}\"" \
| ${JQ} ".storage.fileList[1].name = \"podman\"" \
| ${JQ} '.storage.fileList[1].type = "podman-executable"' \
| ${JQ} ".storage.fileList[1].size = \"${podmanSize}\"" \
| ${JQ} ".storage.fileList[1].sha256sum = \"${podmanSha256Sum}\"" \
| ${JQ} ".driverInfo.name = \"${bundleType}\"" \
>$destDir/crc-bundle-info.json
}
function add_disk_info_to_json_description {
local destDir=$1
local imageFilename=$2
local imageFormat=$3
diskSize=$(du -b $destDir/$imageFilename | awk '{print $1}')
diskSha256Sum=$(sha256sum $destDir/$imageFilename | awk '{print $1}')
cat $destDir/crc-bundle-info.json \
| ${JQ} ".nodes[0].diskImage = \"${imageFilename}\"" \
| ${JQ} ".storage.diskImages[0].name = \"${imageFilename}\"" \
| ${JQ} ".storage.diskImages[0].format = \"${imageFormat}\"" \
| ${JQ} ".storage.diskImages[0].size = \"${diskSize}\"" \
| ${JQ} ".storage.diskImages[0].sha256sum = \"${diskSha256Sum}\"" >$destDir/crc-bundle-info.json.tmp
mv $destDir/crc-bundle-info.json.tmp $destDir/crc-bundle-info.json
}
function generate_hyperv_bundle {
local srcDir=$1
local destDir=$2
mkdir "$destDir"
cp $srcDir/kubeconfig $destDir/
cp $srcDir/id_ecdsa_crc $destDir/
# Copy oc client
cp openshift-clients/windows/oc.exe $destDir/
cp podman-remote/windows/podman.exe $destDir/
ocSize=$(du -b $destDir/oc.exe | awk '{print $1}')
ocSha256Sum=$(sha256sum $destDir/oc.exe | awk '{print $1}')
podmanSize=$(du -b $destDir/podman.exe | awk '{print $1}')
podmanSha256Sum=$(sha256sum $destDir/podman.exe | awk '{print $1}')
cat $srcDir/crc-bundle-info.json \
| ${JQ} ".name = \"${destDir}\"" \
| ${JQ} ".storage.fileList[0].name = \"oc.exe\"" \
| ${JQ} '.storage.fileList[0].type = "oc-executable"' \
| ${JQ} ".storage.fileList[0].size = \"${ocSize}\"" \
| ${JQ} ".storage.fileList[0].sha256sum = \"${ocSha256Sum}\"" \
| ${JQ} ".storage.fileList[1].name = \"podman.exe\"" \
| ${JQ} '.storage.fileList[1].type = "podman-executable"' \
| ${JQ} ".storage.fileList[1].size = \"${podmanSize}\"" \
| ${JQ} ".storage.fileList[1].sha256sum = \"${podmanSha256Sum}\"" \
| ${JQ} '.driverInfo.name = "hyperv"' \
>$destDir/crc-bundle-info.json
${QEMU_IMG} convert -f qcow2 -O vhdx -o subformat=dynamic $srcDir/${SNC_PRODUCT_NAME}.qcow2 $destDir/${SNC_PRODUCT_NAME}.vhdx
add_disk_info_to_json_description "${destDir}" "${SNC_PRODUCT_NAME}.vhdx" vhdx
create_tarball "$destDir"
}
function create_tarball {
local dirName=$1
tar cSf - --sort=name "$dirName" | ${ZSTD} --no-progress ${CRC_ZSTD_EXTRA_FLAGS} --threads=0 -o "${dirName}".crcbundle
}
function download_podman() {
local version=$1
local arch=$2
mkdir -p podman-remote/linux
curl -L https://github.com/containers/podman/releases/download/v4.1.1/podman-remote-static.tar.gz | tar -zx -C podman-remote/linux podman-remote-static
mv podman-remote/linux/podman-remote-static podman-remote/linux/podman-remote
chmod +x podman-remote/linux/podman-remote
if [ "${SNC_GENERATE_MACOS_BUNDLE}" != "0" ]; then
mkdir -p podman-remote/mac
curl -L https://github.com/containers/podman/releases/download/v${version}/podman-remote-release-darwin_${arch}.zip -o podman-remote/mac/podman.zip
${UNZIP} -o -d podman-remote/mac/ podman-remote/mac/podman.zip
mv podman-remote/mac/podman-${version}/usr/bin/podman podman-remote/mac
chmod +x podman-remote/mac/podman
fi
if [ "${SNC_GENERATE_WINDOWS_BUNDLE}" != "0" ]; then
mkdir -p podman-remote/windows
curl -L https://github.com/containers/podman/releases/download/v${version}/podman-remote-release-windows_${arch}.zip -o podman-remote/windows/podman.zip
${UNZIP} -o -d podman-remote/windows/ podman-remote/windows/podman.zip
mv podman-remote/windows/podman-${version}/usr/bin/podman.exe podman-remote/windows
fi
}
function remove_pull_secret_from_disk() {
case "${BUNDLE_TYPE}" in
"microshift")
${SSH} core@${VM_IP} -- sudo rm -f /etc/crio/openshift-pull-secret
;;
"snc")
# This assumes there's a single ostree deployment (`ostree admin status`), which is the case at the end of snc.sh
${SSH} core@${VM_IP} -- sudo cp /var/lib/kubelet/config.json /etc/machine-config-daemon/orig/var/lib/kubelet/config.json.mcdorig
;;
esac
}