From ebdee64104e778c2c7b8f9f83eb44abca7e4b6a1 Mon Sep 17 00:00:00 2001 From: Matthieu Bernardin Date: Mon, 14 Oct 2024 16:19:47 +0200 Subject: [PATCH] feat: Add support for vhd format for build-vm-image task --- task/build-vm-image/0.1/build-vm-image.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/task/build-vm-image/0.1/build-vm-image.yaml b/task/build-vm-image/0.1/build-vm-image.yaml index adbfdf6b3..d6bb7d768 100644 --- a/task/build-vm-image/0.1/build-vm-image.yaml +++ b/task/build-vm-image/0.1/build-vm-image.yaml @@ -21,7 +21,7 @@ spec: type: string - name: IMAGE_TYPE type: string - description: The type of VM image to build, valid values are iso, qcow2 and raw + description: The type of VM image to build, valid values are iso, qcow2, raw and vhd - name: BIB_CONFIG_FILE default: bib.yaml type: string @@ -257,6 +257,10 @@ spec: echo -e "Found iso image." pigz /output/bootiso/install.iso buildah manifest add --arch $(arch) --os linux --artifact --artifact-type application/vnd.diskimage.iso.gzip $OUTPUT_IMAGE /output/bootiso/install.iso.gz + elif [ -f "/output/vpc/disk.vhd" ]; then + echo -e "Found vhd image." + pigz /output/vpc/disk.vhd + buildah manifest add --arch $(arch) --os linux --artifact --artifact-type application/vnd.diskimage.vhd.gzip $OUTPUT_IMAGE /output/vpc/disk.vhd.gz fi buildah manifest push --digestfile image-digest --authfile /.docker/config.json --all $OUTPUT_IMAGE