2023-07-04 16:35:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
image=$@
|
|
|
|
|
|
|
|
image_information=$(oras discover --artifact-type application/json "$image")
|
|
|
|
#printf "$image_information\n"
|
|
|
|
printf "Found image $image...\n"
|
|
|
|
|
|
|
|
report_digest=$(echo "$image_information" | tail -n1 | awk -F ' ' '{print $2}')
|
|
|
|
#printf "$report_digest\n"
|
|
|
|
printf "Found digests for scan report...\n"
|
|
|
|
|
2023-07-04 17:18:15 +00:00
|
|
|
extra_vars=""
|
|
|
|
|
|
|
|
if [[ -v REGISTRY_USERNAME ]]
|
|
|
|
then
|
|
|
|
extra_vars="$extra_vars --username $REGISTRY_USERNAME"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -v REGISTRY_PASSWORD ]]
|
|
|
|
then
|
|
|
|
extra_vars="$extra_vars --password $REGISTRY_PASSWORD"
|
|
|
|
fi
|
|
|
|
|
2023-07-04 16:35:12 +00:00
|
|
|
image_base=$(echo "$image" | awk -F ':' '{print $1}')
|
|
|
|
printf "Pulling $image_base:@$report_digest...\n"
|
2023-07-04 17:18:15 +00:00
|
|
|
oras pull "$extra_vars" "$image_base:@$report_digest"
|