forked from datreeio/datree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·61 lines (39 loc) · 1.7 KB
/
install.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
#!/bin/bash
set -e
osName=$(uname -s)
osArchitecture=$(uname -m)
if [[ $osArchitecture == *'aarch'* || $osArchitecture == *'arm'* ]]; then
osArchitecture='arm64'
fi
if ! [[ -d /usr/local/bin/ ]]
then
mkdir -p "/usr/local/bin/" 2> /dev/null || sudo mkdir -p "/usr/local/bin/"
fi
DOWNLOAD_URL=$(curl --silent "https://api.github.com/repos/datreeio/datree/releases/latest" | grep -o "browser_download_url.*\_${osName}_${osArchitecture}.zip")
DOWNLOAD_URL=${DOWNLOAD_URL//\"}
DOWNLOAD_URL=${DOWNLOAD_URL/browser_download_url: /}
OUTPUT_BASENAME=datree-latest
OUTPUT_BASENAME_WITH_POSTFIX=$OUTPUT_BASENAME.zip
echo "Installing Datree..."
echo
curl -sL $DOWNLOAD_URL -o $OUTPUT_BASENAME_WITH_POSTFIX
echo -e "\033[32m[V] Downloaded Datree\033[0m"
if ! unzip >/dev/null 2>&1;then
echo -e "\033[31;1m error: unzip command not found \033[0m"
echo -e "\033[33;1m install unzip command in your system \033[0m"
exit 1
fi
unzip -qq $OUTPUT_BASENAME_WITH_POSTFIX -d $OUTPUT_BASENAME
mkdir -p ~/.datree
rm -f /usr/local/bin/datree 2> /dev/null || sudo rm -f /usr/local/bin/datree
cp $OUTPUT_BASENAME/datree /usr/local/bin 2> /dev/null || sudo cp $OUTPUT_BASENAME/datree /usr/local/bin
rm $OUTPUT_BASENAME_WITH_POSTFIX
rm -rf $OUTPUT_BASENAME
curl -s https://get.datree.io/k8s-demo.yaml > ~/.datree/k8s-demo.yaml
echo -e "\033[32m[V] Finished Installation\033[0m"
echo
echo -e "\033[35m Usage: $ datree test ~/.datree/k8s-demo.yaml \033[0m"
echo -e "\033[35m Using Helm? => https://github.com/datreeio/helm-datree \033[0m"
echo -e "\033[35m Using Kustomize? => https://hub.datree.io/kustomize-support \033[0m"
echo -e "\033[35m Run 'datree completion -h' to learn how to generate shell autocompletions \033[0m"
echo