We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3306b0 + a5320c0 commit f95735aCopy full SHA for f95735a
config/peerpods/podvm/lib.sh
@@ -331,10 +331,11 @@ function extract_container_image() {
331
error_exit "Usage: extract_container_image <container_image_repo_url> <image_tag> <dest_image> <destination_path> [registry_secret]"
332
333
# Form the skopeo CLI. Add authfile if provided
334
+ # copy signatures for OCI images is not supported, hence the signatures if any are removed while copying
335
if [[ -n "${5}" ]]; then
- SKOPEO_CLI="skopeo copy --authfile ${auth_json_file}"
336
+ SKOPEO_CLI="skopeo copy --remove-signatures --authfile ${auth_json_file}"
337
else
- SKOPEO_CLI="skopeo copy"
338
+ SKOPEO_CLI="skopeo copy --remove-signatures"
339
fi
340
341
# Download the container image
0 commit comments