added aws_ecr_tag_latest.sh

pull/2/head
Hari Sekhon 3 years ago
parent c322d94c5d
commit 69cb2b3a80

@ -0,0 +1,60 @@
#!/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="
Tags a given AWS ECR docker image:tag as 'latest' without pulling and pushing the docker image
$usage_aws_cli_required
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>:<tag> [<aws_cli_options>]"
help_usage "$@"
num_args 1 "$@"
image_tag="$1"
shift || :
if ! [[ "$image_tag" =~ : ]]; then
usage "tag suffix missing from docker image"
fi
docker_image="${image_tag%%:*}"
tag="${image_tag##*:}"
if is_blank "$tag"; then
usage "tag suffix is blank"
fi
"$srcdir/aws_ecr_tag_image.sh" "$docker_image:$tag" "latest"
Loading…
Cancel
Save