Skip to content

Commit

Permalink
chore: exclude edb-ubi ORA images
Browse files Browse the repository at this point in the history
Signed-off-by: Niccolò Fei <[email protected]>
  • Loading branch information
NiccoloFei authored and mnencia committed Nov 25, 2024
1 parent 9ccd4ee commit de0ba9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UBI/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ get_latest_ubi_tag() {
get_latest_ubi_base() {
local ubi_version=$1
rawContent=$(curl -s -L https://quay.io/api/v1/repository/enterprisedb/edb-ubi/tag/?onlyActiveTags=true)
echo "$rawContent" | jq -r --arg uv "$ubi_version" '.tags | sort_by(.start_ts) | .[] | select(.is_manifest_list == true and (.name | startswith($uv))) | .name' | tail -n1
echo "$rawContent" | jq -r --arg uv "$ubi_version" '.tags | sort_by(.start_ts) | .[] | select(.is_manifest_list == true and (.name | startswith($uv))) | .name' | grep -v '-ora' | tail -n1
}

declare -A pgArchMatrix=(
Expand Down

0 comments on commit de0ba9b

Please sign in to comment.