forked from meshery/meshery.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install
263 lines (228 loc) · 8 KB
/
install
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# Copyright The Meshery Authors.
#
# 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.
#!/usr/bin/env bash
# Get the platform to deploy Meshery from the flag
# Get the deploy option on whether to install cli alone or to deploy Meshery server as well
# Default option is to start Meshery server
while getopts ":np:" opt; do
case $opt in
n)
DEPLOY_MESHERY=false
;;
p)
case $OPTARG in
docker)
PLATFORM="docker"
;;
kubernetes)
PLATFORM="kubernetes"
;;
*)
echo "Invalid platform. Enter a valid platform to deploy Meshery [docker, kubernetes]:"
read PLATFORM < /dev/tty
LCOUNTER=1
# Loop until a valid platform is provided from the user, exit after 5 tries
until [ "$PLATFORM" == "docker" ] || [ "$PLATFORM" == "kubernetes" ]; do
if [ $LCOUNTER -eq 5 ]; then
echo "Too many invalid attempts. Please try again."
exit 1
fi
echo "Invalid platform. Enter a valid platform to deploy Meshery [docker, kubernetes]:"
read PLATFORM < /dev/tty
let LCOUNTER++
done
;;
esac
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:)
echo "Option -$OPTARG requires a platform argument." >&2
exit 1
;;
esac
done
# If user wants to install the cli and deploy meshery as well, read the platform flag
if [ "$DEPLOY_MESHERY" != false ]; then
# If no platform flag is present, prompt the user for a platform
if [ ! "$PLATFORM" ]; then
echo Enter a platform to deploy Meshery. Available platforms [docker, kubernetes]:
read PLATFORM < /dev/tty
fi
case "$PLATFORM" in
docker | kubernetes) ;;
*)
echo "Invalid platform. Enter a valid platform to deploy Meshery [docker, kubernetes]:"
read PLATFORM < /dev/tty
LCOUNTER=1
# Loop until a valid platform is provided from the user, exit after 5 tries
until [ "$PLATFORM" == "docker" ] || [ "$PLATFORM" == "kubernetes" ]; do
if [ $LCOUNTER -eq 5 ]; then
echo "Too many invalid attempts. Please try again."
exit 1
fi
echo "Invalid platform. Enter a valid platform to deploy Meshery [docker, kubernetes]:"
read PLATFORM < /dev/tty
let LCOUNTER++
done
;;
esac
fi
####### COMMON FUNCTIONS
############################
command_exists() {
command -v $1 >/dev/null 2>&1
}
####### IDENTIFY OS
############################
OSARCHITECTURE="$(uname -m)"
OS="$(uname)"
if [ "x${OS}" = "xDarwin" ] ; then
OSEXT="Darwin"
else
OSEXT="Linux"
fi
####### PREFLIGHT CHECK
############################
if ! command_exists curl ; then
echo "Missing required utility: 'curl'. Please install 'curl' and try again."
exit;
fi
if ! command_exists tar; then
echo "Missing required utility: 'tar'. Please install 'tar' and try again."
exit;
fi
if [ "x${MESHERY_VERSION}" = "x" ] ; then
MESHERY_VERSION=$(curl -L -s https://docs.meshery.io/project/releases/latest)
fi
if [ "x${MESHERY_VERSION}" = "x" ] ; then
printf "Unable to get latest mesheryctl version. Set MESHERY_VERSION env var and re-run. For example: export MESHERY_VERSION=v0.1.6\n"
exit;
fi
# For patch releases, the meshery tar ball will not be generated, so fall back to last stable release
if [[ "$MESHERY_VERSION" == *"patch"* ]] ; then
LAST_MESHERY_VERSION=`echo $MESHERY_VERSION | awk -F '-patch' '{print $1}'`
printf "Patch release %s is not supported, falling back to last stable release: %s\n\n" "$MESHERY_VERSION" "$LAST_MESHERY_VERSION"
MESHERY_VERSION=$LAST_MESHERY_VERSION
fi
NAME="mesheryctl-${MESHERY_VERSION}"
URL="https://github.com/meshery/meshery/releases/download/${MESHERY_VERSION}/mesheryctl_${MESHERY_VERSION:1}_${OSEXT}_${OSARCHITECTURE}.tar.gz"
printf "\nDownloading %s for %s...\n\n" "$NAME" "$OSEXT"
curl -L ${URL} -o ${PWD}/meshery.tar.gz
validFile=`file ${PWD}/meshery.tar.gz | grep 'gzip compressed data'`
if [ -z "$validFile" ] ; then
printf "Unable to download meshery.tar.gz file from ${URL}. Set MESHERY_VERSION environment variable to a different version and re-run. For example: export MESHERY_VERSION=v0.1.6\n"
exit;
fi
# Generate a temporary folder to store intermediate installation files
temporary_dir_name=$(tr -dc A-Za-z0-9 </dev/urandom 2>/dev/null | head -c 16)
if [ -z "$temporary_dir_name" ] ; then
temporary_dir_name="temp_extract_dir"
fi
mkdir $temporary_dir_name
if [ $? -ne 0 ] ; then
rm ${PWD}/meshery.tar.gz
printf "Disk space is low on the system, Re-try installation after cleaning up some files.\n"
exit 1;
fi
printf "\nExtracting %s to temporary folder %s...\n" "$NAME" "$temporary_dir_name"
tar -xzf ${PWD}/meshery.tar.gz -C ${PWD}/$temporary_dir_name
# Use user provided installation path from env variable(MESHERY_INSTALL_DIR)
# by default its /usr/local/bin
install_dir=${MESHERY_INSTALL_DIR}
if [ -z "$install_dir" ]
then
install_dir="/usr/local/bin"
fi
printf "\nInstalling mesheryctl in $install_dir.\n"
WHOAMI=$(whoami)
if mv ${PWD}/$temporary_dir_name/mesheryctl $install_dir/mesheryctl >/dev/null 2>&1; then
echo "mesheryctl installed."
else
if sudo mv ${PWD}/$temporary_dir_name/mesheryctl $install_dir/mesheryctl ; then
echo "Permission Resolved: mesheryctl installed using sudo permissions."
else
echo "Cannot install mesheryctl. Check permissions of $WHOAMI for $install_dir."
exit 1
fi
fi
#Transfering permissions and ownership to client USER
if [ "$SUDO_USER" == "" ] ;
then
if chown $WHOAMI $install_dir/mesheryctl ; then
# Give write access to user to create .meshery folder in home directory
chown $WHOAMI $HOME
chmod u+w $HOME
echo "permissions moved to "$WHOAMI
else
echo "Unable to write to $install_dir. Please verify write permission for $WHOAMI."
exit 1
fi
else
if chown $SUDO_USER /usr/local/bin/mesheryctl ; then
# Give write access to SUDO_USER to create .meshery folder in home directory
chown $SUDO_USER $HOME
chmod u+w $HOME
echo "permissions moved to "$SUDO_USER
else
echo "Unable to write to $install_dir/mesheryctl. Please verify write permission for $SUDO_USER."
exit 1
fi
fi
printf "Removing installation files"
rm -rf meshery.tar.gz ${PWD}/$temporary_dir_name/
if [ "$DEPLOY_MESHERY" == false ] ;
then
printf "\nRun \"mesheryctl system start\" to start Meshery.\n"
exit 0
fi
# if ADAPTERS are empty then we'd use default local context else go we'd create custom context, which only fetches required adapters
# Valid adapter option are
# consul
# istio
# linkerd
# nsm
# kuma
# osm
# traefik
# nginx
# tanzu
# app
# cilium
# nighthawk
## Any adapter other than above would be ignored
if [ ! -z "$ADAPTERS" ]; then
adapterString=
for adapter in $ADAPTERS; do
case $adapter in
consul|istio|linkerd|nsm|kuma|osm|cilium|nighthawk)
adapterString="$adapterString -a meshery-$adapter "
;;
nginx|tanzu)
adapterString="$adapterString -a meshery-$adapter-sm "
;;
traefik|app)
adapterString="$adapterString -a meshery-$adapter-mesh "
;;
*)
# We are just neglecting invalid mesh options
;;
esac
done
mesheryctl system context create custom -s $adapterString --yes
fi
printf "\nStarting Meshery...\n"
mesheryctl system start --yes --platform $PLATFORM