Skip to content

Instantly share code, notes, and snippets.

@birnbuazn
Forked from DaanGeurts/housekeeping_images.sh
Last active February 23, 2024 19:12
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save birnbuazn/62b7d2e2e7e5152e82a8f7650b3f73e4 to your computer and use it in GitHub Desktop.
Save birnbuazn/62b7d2e2e7e5152e82a8f7650b3f73e4 to your computer and use it in GitHub Desktop.
Deleting unused images from Google Container Registry, leaving x number left
#!/bin/bash
# Copyright © 2017 Google Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
IFS=$'\n\t'
set -eou pipefail
if [[ "$#" -ne 2 || "${1}" == '-h' || "${1}" == '--help' ]]; then
cat >&2 <<"EOF"
housekeeping_images.sh cleans up tagged or untagged images pushed for a given repository (an image name without a tag/digest)
and except the given number most recent images
USAGE:
housekeeping_images.sh REPOSITORY NUMBER_OF_IMAGES_TO_REMAIN
EXAMPLE
housekeeping_images.sh eu.gcr.io/YOUR_PROJECT/IMAGE_NAME 5
would clean up everything under the eu.gcr.io/test-project/php repository
pushed except for the 5 most recent images
EOF
exit 1
# elif [ ${2} -ge 0 ] 2>/dev/null; then
# echo "no number of images to remain given" >&2
# exit 1
fi
main() {
local C=0
IMAGE="${1}"
NUMBER_OF_IMAGES_TO_REMAIN=$((${2} - 1))
CUTOFF=$(gcloud container images list-tags $IMAGE --limit=unlimited \
--sort-by=~TIMESTAMP --format=json | TZ=/usr/share/zoneinfo/UTC jq -r '.['$NUMBER_OF_IMAGES_TO_REMAIN'].timestamp.datetime | sub("(?<before>.*):"; .before ) | strptime("%Y-%m-%d %H:%M:%S%z") | mktime | strftime("%Y-%m-%d %H:%M:%S%z")')
for digest in $(gcloud container images list-tags $IMAGE --limit=unlimited --sort-by=~TIMESTAMP \
--filter="timestamp.datetime < '${CUTOFF}'" --format='get(digest)'); do
(
set -x
gcloud container images delete -q --force-delete-tags "${IMAGE}@${digest}"
)
let C=C+1
done
echo "Deleted ${C} images in ${IMAGE}." >&2
}
main "${1}" ${2}
@leandrosilvaferreira
Copy link

Hello.. I am having this error when using your script:

jq: error (at <stdin>:46): null (null) cannot be matched, as it is not a string

@birnbuazn
Copy link
Author

birnbuazn commented Apr 25, 2020

That‘s probabbly because gcloud cannot find any images in your repo. Try listing your images (replacing or defining $IMAGE first of course)

gcloud container images list-tags $IMAGE --limit=unlimited

Does that list your images in the repo?

@wilsonribeiro
Copy link

wilsonribeiro commented May 14, 2020

Hello.. I am having this error when using your script:

jq: error (at <stdin>:46): null (null) cannot be matched, as it is not a string

Hi friend, the script works good! The "jq" error is only you install the "jq package" and will be ok to script use. The "jq" is a tool for processing JSON inputs.

Run in your system: sudo apt install jq -y

Hope this helps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment