Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108549227
D48382.id148969.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
6 KB
Referenced Files
None
Subscribers
None
D48382.id148969.diff
View Options
diff --git a/release/Makefile.oracle b/release/Makefile.oracle
new file mode 100644
--- /dev/null
+++ b/release/Makefile.oracle
@@ -0,0 +1,57 @@
+#
+# Makefile for preparing & uploading Oracle Cloud images from existing
+# .raw files created by cloudware-release.
+#
+
+# base name for the final image to be uploaded via pre-approved curl URI
+ORACLE_BASENAME= ${OSRELEASE}-${BUILDDATE}-${GITREV}
+
+.for _FS in ${ORACLE_FSLIST}
+ORACLE_OCI_LIST+= cw-oracle-${_FS}.oci
+ORACLE_UPLOAD_LIST+= cw-oracle-upload-${_FS}
+CLEANFILES+= cw-oracle-${_FS}.oci
+ORACLE_TMP= cw-oracle-${_FS}.oci.tmpdir
+CLEANFILES+= ${ORACLE_TMP}/output.QCOW2 ${ORACLE_TMP}/image_metadata.json
+ORACLE_METADATA= ${.CURDIR}/scripts/oracle/
+
+cw-oracle-${_FS}.oci: cw-oracle-${_FS}-raw
+ # FIXME make a tmpdir under OBJDIR
+ mkdir -p ${ORACLE_TMP}
+
+ # create image-specific metadata
+ env TARGET=${TARGET} OSRELEASE=${OSRELEASE} \
+ jq \
+ --slurpfile arm64 ${ORACLE_METADATA}/arm64.shapeCompatibilities.json \
+ --slurpfile amd64 ${ORACLE_METADATA}/amd64.shapeCompatibilities.json \
+ --rawfile caps ${ORACLE_METADATA}imageCapabilityData.json \
+ -f ${ORACLE_METADATA}/metadata.jq \
+ ${ORACLE_METADATA}/base.json \
+ | jq . > ${ORACLE_TMP}/image_metadata.json
+
+ # convert raw image to native qcow2 to have zstd compression
+ qemu-img convert -S 512b -p -O qcow2 -c -o compression_type=zstd \
+ ${.OBJDIR}/${ORACLE${_FS:tu}RAWIMAGE} \
+ ${ORACLE_TMP}/output.QCOW2
+
+ # TODO does OCI only support GNU tar format
+ gtar cf ${.TARGET} -C ${ORACLE_TMP} \
+ image_metadata.json output.QCOW2
+
+ # cleanup
+ rm -rf ${ORACLE_TMP}
+ echo "Oracle image ${.TARGET} is ready for upload."
+
+cw-oracle-upload-${_FS}: cw-oracle-${_FS}.oci
+.if !defined(ORACLE_PAR_URL) || empty(ORACLE_PAR_URL)
+ @echo "--------------------------------------------------------------"
+ @echo ">>> ORACLE_PAR_URL must be set for Oracle image upload"
+ @echo "--------------------------------------------------------------"
+ @false
+.endif
+ curl -s ${ORACLE_PAR_URL}/${ORACLE_BASENAME}-${_FS}.oci --upload-file cw-oracle-${_FS}.oci
+ echo "Oracle image cw-oracle-${_FS}.oci uploaded as ${ORACLE_BASENAME}-${_FS}.oci"
+ touch ${.TARGET}
+.endfor
+
+cw-oracle-prepare: ${ORACLE_OCI_LIST}
+cw-oracle-upload: ${ORACLE_UPLOAD_LIST}
diff --git a/release/Makefile.vm b/release/Makefile.vm
--- a/release/Makefile.vm
+++ b/release/Makefile.vm
@@ -275,4 +275,5 @@
.include "${.CURDIR}/Makefile.firecracker"
.include "${.CURDIR}/Makefile.gce"
.include "${.CURDIR}/Makefile.vagrant"
+.include "${.CURDIR}/Makefile.oracle"
.include "${.CURDIR}/Makefile.inc1"
diff --git a/release/scripts/oracle/amd64.shapeCompatibilities.json b/release/scripts/oracle/amd64.shapeCompatibilities.json
new file mode 100644
--- /dev/null
+++ b/release/scripts/oracle/amd64.shapeCompatibilities.json
@@ -0,0 +1 @@
+[]
diff --git a/release/scripts/oracle/arm64.shapeCompatibilities.json b/release/scripts/oracle/arm64.shapeCompatibilities.json
new file mode 100644
--- /dev/null
+++ b/release/scripts/oracle/arm64.shapeCompatibilities.json
@@ -0,0 +1,24 @@
+[
+ {
+ "internalShapeName": "VM.Standard.A1.Flex",
+ "ocpuConstraints": {
+ "min": 1,
+ "max": 80
+ },
+ "memoryConstraints": {
+ "minInGBs": 1,
+ "maxInGBs": 512
+ }
+ },
+ {
+ "internalShapeName": "VM.Standard.A2.Flex",
+ "ocpuConstraints": {
+ "min": 1,
+ "max": 78
+ },
+ "memoryConstraints": {
+ "minInGBs": 1,
+ "maxInGBs": 946
+ }
+ }
+]
diff --git a/release/scripts/oracle/base.json b/release/scripts/oracle/base.json
new file mode 100644
--- /dev/null
+++ b/release/scripts/oracle/base.json
@@ -0,0 +1,22 @@
+{
+ "version": 2,
+ "externalLaunchOptions": {
+ "firmware": "UEFI_64",
+ "networkType": "PARAVIRTUALIZED",
+ "bootVolumeType": "PARAVIRTUALIZED",
+ "remoteDataVolumeType": "PARAVIRTUALIZED",
+ "localDataVolumeType": "PARAVIRTUALIZED",
+ "launchOptionsSource": "PARAVIRTUALIZED",
+ "pvAttachmentVersion": 2,
+ "pvEncryptionInTransitEnabled": false,
+ "consistentVolumeNamingEnabled": false
+ },
+ "imageCapabilityData": "REPLACEME",
+ "imageCapsFormatVersion": "23cfd738-ad9c-4f56-9281-67be6c8cd14c",
+ "operatingSystem": "REPLACEME",
+ "operatingSystemVersion": "REPLACEME",
+ "additionalMetadata": {
+ "shapeCompatibilities": "REPLACEME"
+ }
+}
+
diff --git a/release/scripts/oracle/imageCapabilityData.json b/release/scripts/oracle/imageCapabilityData.json
new file mode 100644
--- /dev/null
+++ b/release/scripts/oracle/imageCapabilityData.json
@@ -0,0 +1 @@
+{"capabilities":{"Compute.AMD_SecureEncryptedVirtualization":{"descriptorType":"boolean","defaultValue":false},"Storage.BootVolumeType":{"descriptorType":"enumstring","values":["ISCSI","PARAVIRTUALIZED","SCSI","IDE","NVME"],"defaultValue":"PARAVIRTUALIZED"},"Storage.Iscsi.MultipathDeviceSupported":{"descriptorType":"boolean","defaultValue":false},"Storage.ParaVirtualization.EncryptionInTransit":{"descriptorType":"boolean","defaultValue":true},"Storage.ConsistentVolumeNaming":{"descriptorType":"boolean","defaultValue":true},"Compute.SecureBoot":{"descriptorType":"boolean","defaultValue":false},"Storage.ParaVirtualization.AttachmentVersion":{"descriptorType":"enuminteger","values":[1,2],"defaultValue":2},"Storage.LocalDataVolumeType":{"descriptorType":"enumstring","values":["ISCSI","PARAVIRTUALIZED","SCSI","IDE","NVME"],"defaultValue":"PARAVIRTUALIZED"},"Network.AttachmentType":{"descriptorType":"enumstring","values":["PARAVIRTUALIZED","VDPA"],"defaultValue":"PARAVIRTUALIZED"},"Storage.RemoteDataVolumeType":{"descriptorType":"enumstring","values":["ISCSI","PARAVIRTUALIZED","SCSI","IDE","NVME"],"defaultValue":"PARAVIRTUALIZED"},"Compute.LaunchMode":{"descriptorType":"enumstring","values":["NATIVE","EMULATED","VDPA","PARAVIRTUALIZED","CUSTOM"],"defaultValue":"PARAVIRTUALIZED"},"Network.IPv6Only":{"descriptorType":"boolean","defaultValue":false},"Compute.Firmware":{"descriptorType":"enumstring","values":["BIOS","UEFI_64"],"defaultValue":"UEFI_64"}}}
diff --git a/release/scripts/oracle/metadata.jq b/release/scripts/oracle/metadata.jq
new file mode 100644
--- /dev/null
+++ b/release/scripts/oracle/metadata.jq
@@ -0,0 +1,12 @@
+.
++ {
+ operatingSystem: "FreeBSD",
+ operatingSystemVersion: env.OSRELEASE,
+ imageCapabilityData: $caps,
+ additionalMetadata: {
+ shapeCompatibilities: (
+ if env.TARGET == "arm64" then $arm64
+ elif env.TARGET == "amd64" then $amd64
+ else [] end )
+ }
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Jan 27, 5:36 AM (1 h, 7 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16187609
Default Alt Text
D48382.id148969.diff (6 KB)
Attached To
Mode
D48382: release: add cloudware oracle targets to package and upload .oci files
Attached
Detach File
Event Timeline
Log In to Comment