Skip to content

Commit

Permalink
Minor: Fix AIO image expiration
Browse files Browse the repository at this point in the history
Despite what the Quay documentation states, the `y` (year) suffix
doesn't appear to function.  When examining the WebUI, the AIO images
all show "never" in the expires column.  Attempt to fix this by
switching to a `d` suffix.

Signed-off-by: Chris Evich <[email protected]>
  • Loading branch information
cevich committed May 31, 2024
1 parent 41c8937 commit 35c0094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/aio_build_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ for arg in "--label" "--annotation"; do
)

# Save users from themselves, block super-duper old versions from being used
label_args+=("$arg=quay.expires-after=1y")
label_args+=("$arg=quay.expires-after=365d")

# Definitely not any official spec., but offers a quick reference to exactly what produced
# the images and it's current signature.
Expand Down

0 comments on commit 35c0094

Please sign in to comment.