-
Notifications
You must be signed in to change notification settings - Fork 22
/
ci_test.sh
executable file
·59 lines (48 loc) · 1.96 KB
/
ci_test.sh
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
#/bin/bash
# Prep the results.markdown file
echo "Results for "$JOB_NAME > results.markdown
echo "" >> results.markdown
echo 'Tag | ok | changed | unreachable | failed | skipped | rescued | ignored | Returned info' >> results.markdown
echo '-----|---|---------|-------------|--------|---------|---------|------|--------' >> results.markdown
kube_config=$1
export KUBECONFIG=$kube_config
# Setup hosts and vars for CI environment
cp ci/all.yml group_vars/all.yml
cp ci/kubernetes.yml group_vars/kubernetes.yml
# Get the list of tags from stockpile.yml (minus lines beginning with #)
tag_list=`grep tags stockpile.yml | grep -v '^ *#'| awk '{print $(NF-1)}' | tr "]" " "`
# Clean /tmp/container in case anything is still in there
rm -f /tmp/container/*
for tag in $tag_list
do
figlet $tag
results=`ansible-playbook -i ci/hosts stockpile.yml --tags=$tag,dump-facts | grep "ok=.*changed=.*unreachable=.*failed=.*skipped=.*rescued=.*ignored=.*"`
echo $results
# set resulting variables
res=`echo $results | sed 's/=/ /g'`
ok=`echo $res | awk '{print $4}'`
changed=`echo $res | awk '{print $6}'`
unreachable=`echo $res | awk '{print $8}'`
failed=`echo $res | awk '{print $10}'`
skipped=`echo $res | awk '{print $12}'`
rescued=`echo $res | awk '{print $14}'`
ignored=`echo $res | awk '{print $16}'`
if [[ $tag == "backpack_kube" ]]
then
backpack=`ls /tmp/container/`
check_json=`python3 ci/check_json.py -i /tmp/container/$backpack`
rm -f /tmp/container/$backpack
else
check_json=`python3 ci/check_json.py -i /tmp/stockpile.json`
fi
echo "Results from: "$tag
if [[ -z $check_json ]]
then
echo "Returned no information"
echo $tag"|"$ok"|"$changed"|"$unreachable"|"$failed"|"$skipped"|"$rescued"|"$ignored"|Returned NO information" >> results.markdown
else
echo $check_json
echo $tag"|"$ok"|"$changed"|"$unreachable"|"$failed"|"$skipped"|"$rescued"|"$ignored"|Returned valid JSON information" >> results.markdown
fi
echo ""
done