-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathecr-batch-get-image
executable file
·94 lines (87 loc) · 2.7 KB
/
ecr-batch-get-image
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env bash
# vim: set tabstop=2 softtabstop=2 shiftwidth=2 expandtab:
# Get credentials key for ECR from AWS without using the full blown aws client
set -e
if [ -n "${BASH_SOURCE[0]}" ]; then
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
else
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
fi
source "$SCRIPT_DIR/aws-functions"
export src=""
export method="POST"
export service="ecr"
export host="${service}.${AWS_REGION}.amazonaws.com"
export x_amz_target="AmazonEC2ContainerRegistry_V20150921.BatchGetImage"
declare -a IMAGE_IDS
while (( "$#" )); do
_key="$1"
case "$_key" in
--)
# Stop processsing more arguments
shift
break
;;
--repository-name)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
REPOSITORY_NAME="$2"
shift
;;
--repository-name=*)
REPOSITORY_NAME="${_key##--repository-name=}"
shift
;;
--image-ids)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
IMAGE_IDS+=("$2")
shift
;;
--image-ids=*)
IMAGE_IDS+=("${_key##--image-ids=}")
shift
;;
--query)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
QUERY="$2"
shift
;;
--query=*)
QUERY="${_key##--query=}"
shift
;;
--output)
test $# -lt 2 && die "Missing value for the optional argument '$_key'." 1
OUTPUT="$2"
shift
;;
--output=*)
OUTPUT="${_key##--output=}"
shift
;;
esac
shift
done
payload="{\"repositoryName\": \"$REPOSITORY_NAME\",\"imageIds\":["
first=1
for i in "${!IMAGE_IDS[@]}"; do
key=$(echo "${IMAGE_IDS[$i]}" | cut -f1 -d= | tr -d ' ')
value=$(echo "${IMAGE_IDS[$i]}" | cut -f2- -d=)
if [[ -z "$first" ]]; then
payload="$payload,"
else
first=""
fi
payload="$payload{\"$key\":\"$value\"}"
done
payload="$payload]}"
out=`curl -i --tcp-nodelay -sL -X ${method} --data "${payload}" \
"https://${host}/${src}" \
-H "Authorization: AWS4-HMAC-SHA256 Credential=${AWS_ACCESS_KEY_ID?}/${date_scope}/${AWS_REGION}/${service}/aws4_request,SignedHeaders=$(all_signed_headers),Signature=$(signature)" \
-H "Accept-Encoding: identity" \
-H "Content-Type: application/x-amz-json-1.1" \
-H "Date: ${date_header}" \
-H "x-amz-content-sha256: $(payload_hash)" \
-H "x-amz-date: ${iso_timestamp}" \
-H "x-amz-target: ${x_amz_target}"`
error=$?
parse_curl_response "$error" "$out"