added aws_ecr_tags_timestamps.sh

pull/2/head
Hari Sekhon 3 years ago
parent 50a6327494
commit 15e886f287

@ -0,0 +1,63 @@
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
# args: haritest:1.0 stable
#
# Author: Hari Sekhon
# Date: 2021-12-10 11:53:32 +0000 (Fri, 10 Dec 2021)
#
# https://github.com/HariSekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090
. "$srcdir/lib/aws.sh"
# shellcheck disable=SC2034,SC2154
usage_description="
Lists all tags for the given AWS ECR docker image as well as their image upload timestamp, newest first
Output Format:
<timestamp> <tag>
Each timestamp and tag for the given image is output tab separated on a separate line for easy further piping and filtering
$usage_aws_cli_required
If you want to remove an extra tag from an existing image:
aws ecr batch-delete-image --repository-name <image> --image-ids \"imageTag=<tag>\"
Similar scripts:
aws_ecr_*.sh - scripts for AWS Elastic Container Registry
gcr_*.sh - scripts for Google Container Registry
"
# used by usage() in lib/utils.sh
# shellcheck disable=SC2034
usage_args="<image> [<aws_cli_options>]"
help_usage "$@"
num_args 1 "$@"
image="$1"
shift || :
aws ecr describe-images --repository "$image" "$@" |
jq -r '.imageDetails | map(.imagePushedAt + "\t" + .imageTags[]?) | .[]' |
sort -r
Loading…
Cancel
Save