-
Notifications
You must be signed in to change notification settings - Fork 2
/
deployserv.sh
executable file
·392 lines (330 loc) · 12.8 KB
/
deployserv.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
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#!/bin/bash
###############################################################################
# DEPLOYSERV -- by Peter Bukowinski -- last modified 11-20-2012
#
# This script automates the process of re-deploying linux servers. I optimized
# it for deploying multiple servers at a time. See help section for more info.
###############################################################################
#############
# VARIABLES #
#############
pxe=/tftpboot/linux-install/pxelinux.cfg # path to the pxe install configs
pxecfgs=$(ls -1 $pxe | grep .cfg$) # finds files that end with .cfg
cpass=foo # cluster node ipmi root password
spass=bar # other server ipmi root password
#############
# FUNCTIONS #
#############
function help {
cat<<EOF
DEPLOY SERVER TOOL
Utility to redeploy linux servers in the datacenter. It will link specified server(s)
to chosen PXE boot config, then reboot and handle the subsequent PXE link removal.
`basename $0`: `basename $0` [-F F-row Rack] [-H H-row Rack] [-r Host Range] [-s Single Host(s)] [-h help]
You must specify *one* of the following options:
-F -- F-row Cluster Rack: Specify an entire cluster rack using the double-digit format,
e.g. `basename $0` -f 08
-H -- H-row Cluster Rack: Specify an entire cluster rack using the double-digit format,
e.g. `basename $0` -g 01
-r -- Host Range: Specify a range of hosts within a rack using square brackets,
e.g. `basename $0` -r f08u[01-16]
-s -- Single Host: Specify one or more hosts, separated by a comma and no space,
e.g. `basename $0` -s f08u17,f10u11,h01u01
-h -- Display this help
EOF
}
function link_frack(){
if [ -z "$1" ]; then
echo "You must specify a cluster rack when using the -f option."
else
rackproxy=$(echo f"$1"u01)
rack_address=$(gethostip $rackproxy | awk '{gsub("0B$","");print $3}') || echo "Could not get hostip."
fi
# declare an array to hold the config names
declare -a cfgARRAY
let local index=0
# Set up the interface
echo ""
echo "Available configurations:"
# populate array and display config choices
for cfg in $pxecfgs; do
cfgARRAY[$index]="$cfg"
if [ $index -lt 10 ]; then sp=" "; else sp=""; fi
echo "[$sp$index]: $cfg"
((index++))
done
((index--))
echo ""
echo " [Q]: Quit"
# prompt user to select a config
echo ""
echo -n "Choose a config to deploy to cluster rack f$1 . [0-$index]: "
read -n 3 achoice
# check choice for sanity
if [ "$achoice" = "Q" ] || [ "$achoice" = "q" ]; then
exit 0
fi
if [ "0" -le "$achoice" ] && [ "$achoice" -le "$index" ]; then # proceed if choice is within expected range
cd $pxe
ln -fs ${cfgARRAY[$achoice]} $rack_address
echo "Created link: ${cfgARRAY[$achoice]} -> $rack_address."
else
echo "Haha, you fool! That was an invalid selection. Now you have to start over."
exit 1
fi
}
function link_hrack(){
if [ -z "$1" ]; then
echo "You must specify a cluster rack when using the -f option."
else
rackproxy=$(echo h"$1"u01)
rack_address=$(gethostip $rackproxy | awk '{gsub("0B$","");print $3}') || echo "Could not get hostip."
fi
# declare an array to hold the config names
declare -a cfgARRAY
let local index=0
# Set up the interface
echo ""
echo "Available configurations:"
# populate array and display config choices
for cfg in $pxecfgs; do
cfgARRAY[$index]="$cfg"
if [ $index -lt 10 ]; then sp=" "; else sp=""; fi
echo "[$sp$index]: $cfg"
((index++))
done
((index--))
echo ""
echo " [Q]: Quit"
# prompt user to select a config
echo ""
echo -n "Choose a config to deploy to cluster rack f$1 . [0-$index]: "
read -n 3 achoice
# check choice for sanity
if [ "$achoice" = "Q" ] || [ "$achoice" = "q" ]; then
exit 0
fi
if [ "0" -le "$achoice" ] && [ "$achoice" -le "$index" ]; then # proceed if choice is within expected range
cd $pxe
ln -fs ${cfgARRAY[$achoice]} $rack_address
echo "Created link: ${cfgARRAY[$achoice]} -> $rack_address."
else
echo "Haha, you fool! That was an invalid selection. Now you have to start over."
exit 1
fi
}
function frack_hosts(){
local rack=$(echo f"$1"u)
for i in {1..36}; do
echo $rack$(printf "%02d" $i)
done
}
function hrack_hosts(){
local rack=$(echo g"$1"u)
for i in {1..36}; do
echo $rack$(printf "%02d" $i)
done
}
function check_single(){
if [ -z "$1" ]; then
echo "You must specify a single host when using the -s option."
exit 0
fi
}
function parse_range(){
if [ -z "$1" ]; then
echo "You must specify a range when using the -r option."
else
local rack=$(echo $1 | awk -F'[' '/\[.*\]/{print $1}')
r_start=$(echo $1 | awk -F'[' '/\[.*\]/{gsub("]","");print $2}' | awk -F- '{print $1}')
r_end=$(echo $1 | awk -F'[' '/\[.*\]/{gsub("]","");print $2}' | awk -F- '{print $2}')
for i in $(eval echo {$r_start..$r_end}); do
echo $rack$(printf "%02d" $i)
done
fi
}
function choose_pxe () {
# declare an array to hold the config names
declare -a cfgARRAY
index=0
# Set up the interface
echo ""
echo "Available configurations:"
# populate array and display config choices
for cfg in $pxecfgs; do
cfgARRAY[$index]="$cfg"
if [ $index -lt 10 ]; then sp=" "; else sp=""; fi
echo "[$sp$index]: $cfg"
((index++))
done
((index--))
echo ""
echo " [Q]: Quit"
# prompt user to select a config
echo ""
echo -n "Choose a config to deploy. [0-$index]: "
read -n 3 bchoice
echo ${cfgARRAY[$bchoice]}
}
function link_pxe(){
pxe_cfg=$2
# check choice for sanity
if [ "$bchoice" = "Q" ] || [ "$bchoice" = "q" ]; then
exit 0
fi
hostip=$(gethostip $1 | awk '{print $3}')
# check if server exists before proceeding
if [ -z "$hostip" ]; then
echo "WARNING: $1 does not exist. Skipping."
continue
else
cd $pxe
ln -fs $pxe_cfg $hostip
echo "Created link: $pxe_cfg -> $hostip."
fi
}
function reboot_host(){
if [[ $1 == f* ]]; then # checks if server is in the f row (cluster node)
ipmitool -H ${1}i -U root -P $cpass chassis power cycle || echo "Couldn't reboot. Is ipmi set up properly?"
elif [[ $1 == h* ]]; then # checks if server is in the h row (cluster node)
ipmitool -I lanplus -H f15u28i -U root -P $cpass chassis power cycle || echo "Couldn't reboot. Is ipmi set up properly?"
else
ipmitool -H ${1}i -U root -P $spass chassis power cycle || echo "Couldn't reboot. Is ipmi set up properly?"
fi
}
function rm_link(){
echo "rm -f ${pxe}/$hostip" | at now + 5 minutes
}
function rm_rack_link(){
echo "rm -f ${pxe}/$rack_address" | at now + 5 minutes
}
function clean_pupcert(){
ssh root@puppet puppet cert clean $1.int.janelia.org
}
############
# WORKFLOW #
############
if [[ $# < 2 ]]; then help; else
while getopts :f:h:r:s opt; do
case "$opt" in
F) CLUSTER_RACK="$OPTARG"
link_frack $CLUSTER_RACK
HOST_LIST=$(frack_hosts $CLUSTER_RACK)
for host in $HOST_LIST; do
echo "--------------------------------"
echo "Starting deployment of $host..."
echo -n "Rebooting..."; reboot_host $host > /dev/null && echo " OK"
echo -n "Cleaning Puppet certificate..."; clean_pupcert $host > /dev/null && echo " OK"
done
echo -n "Removing rack link..."; rm_rack_link $CLUSTER_RACK; echo " OK"
echo "--------------------------------"
echo "Done."
exit 0;;
H) CLUSTER_RACK="$OPTARG"
link_hrack $CLUSTER_RACK
HOST_LIST=$(hrack_hosts $CLUSTER_RACK)
for host in $HOST_LIST; do
echo "--------------------------------"
echo "Starting deployment of $host..."
echo -n "Rebooting..."; reboot_host $host > /dev/null && echo " OK"
echo -n "Cleaning Puppet certificate..."; clean_pupcert $host > /dev/null && echo " OK"
done
echo -n "Removing rack link..."; rm_rack_link $CLUSTER_RACK; echo " OK"
echo "--------------------------------"
echo "Done."
exit 0;;
r) HOST_RANGE="$OPTARG"
HOST_LIST=$(parse_range $HOST_RANGE)
# declare an array to hold the config names
declare -a cfgARRAY
index=0
# Set up the interface
echo ""
echo "Available configurations:"
# populate array and display config choices
for cfg in $pxecfgs; do
cfgARRAY[$index]="$cfg"
if [ $index -lt 10 ]; then sp=" "; else sp=""; fi
echo "[$sp$index]: $cfg"
((index++))
done
((index--))
echo ""
echo " [Q]: Quit"
# prompt user to select a config
echo ""
echo -n "Choose a config to deploy. [0-$index]: "
read -n 3 choice
if [ "$choice" = "Q" ] || [ "$choice" = "q" ]; then exit 0; fi
if [ "0" -le "$choice" ] && [ "$choice" -le "$index" ]; then # proceed if choice is within expected range
pxe_choice=${cfgARRAY[$choice]}
else
echo "Haha, you fool! That was an invalid selection. Now you have to start over."
exit 1
fi
for host in $HOST_LIST; do
echo "--------------------------------"
echo "Starting deployment of $host..."
link_pxe $host $pxe_choice
echo -n "Rebooting..."; reboot_host $host > /dev/null && echo " OK"
echo -n "Removing PXE link..."; rm_link $host && echo " OK"
echo -n "Cleaning Puppet certificate..."; clean_pupcert $host > /dev/null && echo " OK"
echo ""
done
echo "--------------------------------"
echo "Done."
exit 0;;
s) SINGLE_HOSTS=$(echo "$OPTARG" | sed 's/,/ /g')
for host in $SINGLE_HOSTS; do
check_single $host
done
# declare an array to hold the config names
declare -a cfgARRAY
index=0
# Set up the interface
echo ""
echo "Available configurations:"
# populate array and display config choices
for cfg in $pxecfgs; do
cfgARRAY[$index]="$cfg"
if [ $index -lt 10 ]; then sp=" "; else sp=""; fi
echo "[$sp$index]: $cfg"
((index++))
done
((index--))
echo ""
echo " [Q]: Quit"
# prompt user to select a config
echo ""
echo -n "Choose a config to deploy. [0-$index]: "
read -n 3 choice
if [ "$choice" = "Q" ] || [ "$choice" = "q" ]; then exit 0; fi
if [ "0" -le "$choice" ] && [ "$choice" -le "$index" ]; then # proceed if choice is within expected range
pxe_choice=${cfgARRAY[$choice]}
else
echo "Haha, you fool! That was an invalid selection. Now you have to start over."
exit 1
fi
for host in $SINGLE_HOSTS; do
echo "--------------------------------"
echo "Starting deployment of $host..."
link_pxe $host $pxe_choice
echo -n "Rebooting..."; reboot_host $host > /dev/null && echo " OK"
echo -n "Removing PXE Link..."; rm_link $host && echo " OK"
echo -n "Cleaning Puppet certificate..."; clean_pupcert $host > /dev/null && echo " OK"
echo ""
done
echo "--------------------------------"
echo "Done."
exit 0;;
h)
help
exit 0;;
\?)
echo "Usage: `basename $0` [-F F-row Rack] [-H H-row Rack] [-r Host Range] [-s Single Host(s)] [-h]"
echo "For more help, run: `basename $0` -h"
exit 0;;
esac
done
shift `expr $OPTIND - 1`
fi