-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·41 lines (24 loc) · 1.18 KB
/
setup.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
#!/bin/sh
echo "Creating Directory"
mkdir -p ./Meta/bin
echo "Getting MQTT CLI"
wget -O ./Meta/bin/mqttx https://www.emqx.com/en/downloads/MQTTX/v1.11.1/mqttx-cli-linux-x64
chmod +x ./Meta/bin/mqttx
echo "Getting MC CLI"
wget -O ./Meta/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc
chmod +x ./Meta/bin/mc
echo "Getting egctl"
wget -O - https://github.com/envoyproxy/gateway/releases/download/latest/egctl_latest_linux_amd64.tar.gz | tar -zxf - -C ./Meta/bin/ --strip-components=3
chmod +x ./Meta/bin/egctl
echo "Getting talosctl"
wget -O ./Meta/bin/talosctl https://github.com/siderolabs/talos/releases/download/v1.10.0-alpha.1/talosctl-linux-amd64
chmod +x ./Meta/bin/talosctl
echo "Installing ArgoCD CLI"
wget -O ./Meta/bin/argocd https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
chmod +x ./Meta/bin/argocd
echo "Installing Longhorn CTL"
wget -O ./Meta/bin/longhornctl https://github.com/longhorn/cli/releases/download/v1.8.1/longhornctl-linux-amd64
chmod +x ./Meta/bin/longhornctl
echo "Installing Crossplane CLI"
wget -O ./Meta/bin/crossplane https://releases.crossplane.io/stable/current/bin/linux_amd64/crank
chmod +x ./Meta/bin/crossplane