forked from eddycharly/kind-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_bootstrap.sh
executable file
·81 lines (63 loc) · 1.2 KB
/
_bootstrap.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env bash
# VARIABLES
KUBE_PROMETHEUS_STACK=false
GITOPS=false
# FUNCTIONS
log(){
echo "---------------------------------------------------------------------------------------"
echo $1
echo "---------------------------------------------------------------------------------------"
}
verifySupported(){
if ! type "kubectl" > /dev/null 2>&1; then
echo "kubectl is required"
exit 1
fi
if ! type "curl" > /dev/null 2>&1; then
echo "curl is required"
exit 1
fi
if ! type "helm" > /dev/null 2>&1; then
echo "helm is required"
exit 1
fi
}
fail_trap() {
local RESULT=$?
log "FAILED WITH RESULT $RESULT !!!"
exit $RESULT
}
# RUN
trap "fail_trap" EXIT
set -e
set -u
while [[ $# -gt 0 ]]; do
case $1 in
'--gitops')
GITOPS=true
;;
'--kube-prometheus-stack')
KUBE_PROMETHEUS_STACK=true
;;
*)
echo "ERROR: Unknown option $1"
help
exit 1
;;
esac
shift
done
set +u
verifySupported
./cluster.sh
./keycloak.sh
./argocd.sh
./gitea.sh
if [ "$KUBE_PROMETHEUS_STACK" == "true" ]; then
./kube-prometheus-stack.sh
fi
if [ "$GITOPS" == "true" ]; then
./gitops.sh
else
./argocd-applications.sh
fi