You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AGENT-1193: Add mirror-path and registry-cert support for OVE ISO builds
Add support for using pre-mirrored images and custom registry
certificates when building OVE ISOs, enabling disconnected
deployments with custom registries.
Changes for mirror-path:
- Pass --mirror-path to build-ove-image.sh when MIRROR_IMAGES is enabled
- Appliance skips oc-mirror and uses pre-mirrored images when --mirror-path is provided
Changes for registry-cert:
- Add --registry-cert parameter for custom registry TLS certificates
- Support both script build method (faster for development/debugging) and container build method
- Use unified mechanism across both build methods
- Convert to REGISTRY_CERT make variable for containerized builds
Assisted-by: Claude Sonnet 4.5 <noreply@anthropic.com>
make build-ove-iso-container PULL_SECRET_FILE="${PULL_SECRET_FILE}" RELEASE_IMAGE_URL="${release_image_url}" ARCH=${ARCH}${mirror_args}${registry_cert_make_arg}
141
+
# Retrieve ISO from container
142
+
./hack/iso-from-container.sh
143
+
local iso_name="agent-ove.${ARCH}.iso"
144
+
echo"Moving ${iso_name} to ${asset_dir}"
145
+
mv ./output-iso/${iso_name}"${asset_dir}"
146
+
fi
147
+
105
148
rm -rf "${asset_dir}"/src
106
149
popd
107
150
}
@@ -639,6 +682,13 @@ case "${AGENT_E2E_TEST_BOOT_MODE}" in
0 commit comments