-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-cli.sh
More file actions
111 lines (96 loc) · 2.8 KB
/
Copy pathinstall-cli.sh
File metadata and controls
111 lines (96 loc) · 2.8 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/bash
#
# Copyright Rivtower Technologies LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -o errexit
export OWNER=cita-cloud
export REPO=operator-proxy
export BIN_LOCATION="/usr/local/bin"
#cli_version=$(curl -s https://api.github.com/repos/$OWNER/$REPO/releases/latest | grep 'tag_name' | cut -d '"' -f 4 | tr -d 'v')
cli_version=0.0.3
function sudocmd(){
if [ $(whoami) == "root" ]; then
echo ""
else
echo "sudo"
fi
}
SUDO=$(sudocmd)
getPackage() {
uname=$(uname)
userid=$(id -u)
suffix=""
case $uname in
"Darwin")
arch=$(uname -m)
case $arch in
"x86_64")
suffix="darwin-amd64"
;;
esac
case $arch in
"arm64")
suffix="darwin-arm64"
;;
esac
;;
"MINGW"*)
suffix=".exe"
BINLOCATION="$HOME/bin"
mkdir -p $BINLOCATION
;;
"Linux")
arch=$(uname -m)
echo $arch
case $arch in
"x86_64")
suffix="linux-amd64"
;;
esac
case $arch in
"aarch64")
suffix="linux-arm64"
;;
esac
;;
esac
download_dir="/tmp"
targetFile="$download_dir/cco-cli-$cli_version-$suffix"
if [ -e "$targetFile" ]; then
rm "$targetFile"
fi
url=https://github.com/$OWNER/$REPO/releases/download/v$cli_version/cco-cli-$cli_version-$suffix
echo "Downloading package $url as $targetFile"
curl -sSL --fail $url --output "$targetFile"
if [ "$?" = "0" ]; then
echo "Download complete."
sh -c "$SUDO mv $targetFile $BIN_LOCATION/cco-cli"
sh -c "$SUDO chmod +x $BIN_LOCATION/cco-cli"
echo "Install successful!"
echo
echo "=============================================================="
echo " You should first set the OPERATOR_PROXY_ENDPOINT"
echo " environment variable to use this client, like:"
echo " export OPERATOR_PROXY_ENDPOINT=IP:PORT."
echo " IP is your kubernetes work node's ip, and you can"
echo " find the PORT from below command in 'PORT(S)' column:"
echo " kubectl get svc cita-cloud-operator-proxy -n{YOUR_NAMESPACE}"
echo "=============================================================="
echo
else
echo "Download file failed, maybe not found."
fi
}
getPackage