This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 376
/
check-deps
executable file
·96 lines (83 loc) · 2.53 KB
/
check-deps
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
95
96
#!/bin/bash
set -e
ROOT=${ROOT:-$(pwd)}
TYPE=$1
SERVICE=$2
service_dir=$ROOT/$SERVICE
display_usage () {
echo "Usage: $0 TYPE SERVICE"
}
# Check if there are at least 2 arguments
if [ $# -lt 2 ]; then
display_usage
exit 1
fi
# Check if the service exists
if [ ! -f $service_dir/metadata.yaml ]; then
echo "Service $SERVICE does not exist"
exit 1
fi
# Check for quiet mode
if [ ! -z $QUIET ]; then
export OUTPUT_FILE=$(mktemp)
exec 5>&1 6>&2 1>$OUTPUT_FILE 2>&1
fi
cleanup () {
CODE=$?
if [ ! -z $QUIET ]; then
if [ ! $CODE -eq 0 ]; then
cat $OUTPUT_FILE >&5
fi
rm $OUTPUT_FILE
fi
}
trap cleanup EXIT
check-deps_cloudformation () {
# Gather dependencies
dependencies=$(yq -r ' .dependencies[]? ' $service_dir/metadata.yaml)
# If it contains '*', this means all other services must be deployed
echo "$dependencies" | grep -q \* && {
dependencies="$($ROOT/tools/services --exclude ${SERVICE})"
}
echo dependencies=$dependencies
# Check if all dependencies are deployed
for dependency in $dependencies; do
stack_name=${DOMAIN:-ecommerce}-${ENVIRONMENT:-dev}-${dependency}
aws cloudformation describe-stacks --stack-name $stack_name | \
jq -r ' .Stacks |
map(
.StackStatus
| test("(CREATE_FAILED|ROLLBACK_IN_PROGRESS|ROLLBACK_COMPLETE|ROLLBACK_FAILED|DELETE_IN_PROGRESS|DELETE_COMPLETE|DELETE_FAILED)")
| not
) ' | \
grep -q "true" && {
FOUND=true
}
# Checking in case the service doesn't support environments
if [ -z $FOUND ]; then
echo "Stack $stack_name not found"
stack_name=${DOMAIN:-ecommerce}-${dependency}
aws cloudformation describe-stacks --stack-name $stack_name | \
jq -r ' .Stacks |
map(
.StackStatus
| test("(CREATE_FAILED|ROLLBACK_IN_PROGRESS|ROLLBACK_COMPLETE|ROLLBACK_FAILED|DELETE_IN_PROGRESS|DELETE_COMPLETE|DELETE_FAILED)")
| not
) ' | \
grep -q "true" && {
FOUND=true
}
fi
if [ -z $FOUND ]; then
echo "Stack $stack_name not found"
exit 1
fi
done
}
type check-deps_$TYPE | grep -q "function" &>/dev/null || {
echo "Unsupported type: $TYPE"
echo
display_usage
exit 1
}
check-deps_$TYPE