-
Notifications
You must be signed in to change notification settings - Fork 44
/
oci_compute_instance_change_ip.sh
executable file
·570 lines (484 loc) · 21.8 KB
/
oci_compute_instance_change_ip.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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
#!/bin/bash
#************************************************************************
#
# oci_compute_instance_change_ip.sh - Change Primary VNIC IP of Compute Instance
#
# Copyright 2018 Rodrigo Jorge <http://www.dbarj.com.br/>
#
# 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.
#
#************************************************************************
# Available at: https://github.com/dbarj/oci-scripts
# Created on: Aug/2018 by Rodrigo Jorge
# Version 1.02
#************************************************************************
set -e
# Define paths for oci-cli and jq or put them on $PATH. Don't use relative PATHs in the variables below.
v_oci="oci"
v_jq="jq"
# Add any desired oci argument. Keep default to avoid oci_cli_rc usage (recommended).
v_oci_args="--cli-rc-file /dev/null"
# Don't change it.
v_min_ocicli="2.4.30"
echoError ()
{
(>&2 echo "$1")
}
exitError ()
{
echoError "$1"
exit 1
}
if [ $# -ne 2 ]
then
echoError "$0: Two arguments are needed.. given: $#"
echoError "- 1st param = Compute Instance Name or OCID"
echoError "- 2nd param = Compute Instance Target IP"
exit 1
fi
v_inst_name="$1"
v_new_ip="$2"
[ -n "$v_inst_name" ] || exitError "Intance Name or OCID can't be null."
[ -n "$v_new_ip" ] || exitError "IP can't be null."
if ! $(which ${v_oci} >&- 2>&-)
then
echoError "Could not find oci-cli binary. Please adapt the path in the script if not in \$PATH."
echoError "Dowload page: https://github.com/oracle/oci-cli"
exit 1
fi
if ! $(which ${v_jq} >&- 2>&-)
then
echoError "Could not find jq binary. Please adapt the path in the script if not in \$PATH."
echoError "Download page: https://github.com/stedolan/jq/releases"
exit 1
fi
v_cur_ocicli=$(${v_oci} -v)
if [ "${v_min_ocicli}" != "`echo -e "${v_min_ocicli}\n${v_cur_ocicli}" | sort -V | head -n1`" ]
then
exitError "Minimal oci version required is ${v_min_ocicli}. Found: ${v_cur_ocicli}"
fi
v_ocicli_timeout=3600
[ -z "${v_oci_args}" ] || v_oci="${v_oci} ${v_oci_args}"
v_test=$(${v_oci} iam compartment list --all 2>&1) && ret=$? || ret=$?
if [ $ret -ne 0 ]
then
echoError "oci-cli not able to run \"${v_oci} iam compartment list --all\". Please check error:"
echoError "$v_test"
exit 1
fi
if [ "${v_inst_name:0:18}" == "ocid1.instance.oc1" ]
then
v_instanceID=$(${v_oci} compute instance get --instance-id "${v_inst_name}" | ${v_jq} -rc '.data | select(."lifecycle-state" != "TERMINATED") | ."id"') && ret=$? || ret=$?
[ $ret -eq 0 -a -n "$v_instanceID" ] || exitError "Could not find a compute with the provided OCID."
v_inst_name=$(${v_oci} compute instance get --instance-id "${v_instanceID}" | ${v_jq} -rc '.data."display-name"') && ret=$? || ret=$?
[ $ret -eq 0 -a -n "$v_inst_name" ] || exitError "Could not get Display Name of compute ${v_instanceID}"
else
v_list_comps=$(${v_oci} iam compartment list --all | ${v_jq} -rc '.data[]."id"') && ret=$? || ret=$?
[ $ret -eq 0 -a -n "$v_list_comps" ] || exitError "Could not list Compartments."
for v_comp in $v_list_comps
do
v_out=$(${v_oci} compute instance list --compartment-id "$v_comp" --all | ${v_jq} -rc '.data[] | select(."display-name" == "'"${v_inst_name}"'" and ."lifecycle-state" != "TERMINATED") | ."id"') && ret=$? || ret=$?
[ $ret -eq 0 ] || exitError "Could not search the OCID of compute ${v_inst_name} in compartment ${v_comp}. Use OCID instead."
if [ -n "$v_out" ]
then
[ -z "$v_instanceID" ] || exitError "More than 1 compute named \"${v_inst_name}\" found in this Tenancy. Use OCID instead."
[ -n "$v_instanceID" ] || v_instanceID="$v_out"
fi
done
if [ -z "$v_instanceID" ]
then
exitError "Could not get OCID of compute ${v_inst_name}"
elif [ $(echo "$v_instanceID" | wc -l) -ne 1 ]
then
exitError "More than 1 compute named \"${v_inst_name}\" found in one Compartment. Use OCID instead."
fi
fi
v_jsoninst=$(${v_oci} compute instance get --instance-id "${v_instanceID}" | ${v_jq} -rc '.data') && ret=$? || ret=$?
[ $ret -eq 0 -a -n "$v_jsoninst" ] || exitError "Could not get Json for compute ${v_inst_name}"
v_compartment_id=$(echo "${v_jsoninst}" | ${v_jq} -rc '."compartment-id"') && ret=$? || ret=$?
[ $ret -eq 0 -a -n "$v_compartment_id" ] || exitError "Could not get the instance Compartment ID."
v_compartment_arg="--compartment-id ${v_compartment_id}"
v_jsonvnics=$(${v_oci} compute instance list-vnics --all --instance-id "${v_instanceID}" | ${v_jq} -rc '.data[]') && ret=$? || ret=$?
[ $ret -eq 0 -a -n "$v_jsonvnics" ] || exitError "Could not get Json for vnics of ${v_inst_name}"
function in_subnet {
# Doug R. in https://unix.stackexchange.com/questions/274330/check-ip-is-in-range-of-whitelist-array
# Determine whether IP address is in the specified subnet.
#
# Args:
# sub: Subnet, in CIDR notation.
# ip: IP address to check.
#
# Returns:
# 1|0
#
local ip ip_a mask netmask sub sub_ip rval start end
# Define bitmask.
local readonly BITMASK=0xFFFFFFFF
# Set DEBUG status if not already defined in the script.
[[ "${DEBUG}" == "" ]] && DEBUG=0
# Read arguments.
IFS=/ read sub mask <<< "${1}"
IFS=. read -a sub_ip <<< "${sub}"
IFS=. read -a ip_a <<< "${2}"
# Calculate netmask.
netmask=$(($BITMASK<<$((32-$mask)) & $BITMASK))
# Determine address range.
start=0
for o in "${sub_ip[@]}"
do
start=$(($start<<8 | $o))
done
start=$(($start & $netmask))
end=$(($start | ~$netmask & $BITMASK))
# Convert IP address to 32-bit number.
ip=0
for o in "${ip_a[@]}"
do
ip=$(($ip<<8 | $o))
done
# Determine if IP in range.
(( $ip >= $start )) && (( $ip <= $end )) && rval=1 || rval=0
(( $DEBUG )) &&
printf "ip=0x%08X; start=0x%08X; end=0x%08X; in_subnet=%u\n" $ip $start $end $rval 1>&2
echo "${rval}"
}
v_jsonprivnic=$(echo "$v_jsonvnics" | ${v_jq} -rc 'select (."is-primary" == true)')
v_jsonsecvnic=$(echo "$v_jsonvnics" | ${v_jq} -rc 'select (."is-primary" != true)')
v_jsonpubsip=$(${v_oci} network public-ip list ${v_compartment_arg} --scope REGION --all | ${v_jq} -rc '.data[]') && ret=$? || ret=$?
[ $ret -eq 0 ] || exitError "Could not get Json for Public IPs of ${v_inst_name}"
v_reservedpubsip=$(echo "$v_jsonpubsip" | ${v_jq} -rc '."ip-address"')
v_instanceAD=$(echo "$v_jsoninst" | ${v_jq} -rc '."availability-domain"')
[ -n "$v_instanceAD" ] || exitError "Could not get Instance Availability Domain."
v_instanceShape=$(echo "$v_jsoninst" | ${v_jq} -rc '."shape"')
[ -n "$v_instanceShape" ] || exitError "Could not get Instance Shape."
v_instancePriVnicIP=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."private-ip"')
[ -n "$v_instancePriVnicIP" ] || exitError "Could not get Instance Primary Private IP Address."
[ "$v_instancePriVnicIP" != "$v_new_ip" ] || exitError "Source and Target IPs are the same."
v_instancePriVnicSubnetID=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."subnet-id"')
[ -n "$v_instancePriVnicSubnetID" ] || exitError "Could not get Instance Primary Subnet ID."
v_instanceBVID=$(${v_oci} compute boot-volume-attachment list ${v_compartment_arg} --availability-domain "${v_instanceAD}" --instance-id "${v_instanceID}" | ${v_jq} -rc '.data[] | ."boot-volume-id"')
[ -n "$v_instanceBVID" ] || exitError "Could not get Instance Boot Volume ID."
v_iprange=$(${v_oci} network subnet get --subnet-id "$v_instancePriVnicSubnetID" | ${v_jq} -rc '.data."cidr-block"')
[ -n "$v_iprange" ] || exitError "Could not get Instance Subnet CIDR."
(( $(in_subnet $v_iprange $v_new_ip) )) || exitError "IP \"$v_new_ip\" not in $v_iprange block."
v_ipcheck=$(${v_oci} network private-ip list --all --subnet-id "$v_instancePriVnicSubnetID" | ${v_jq} -rc '.data[] | select (."ip-address" == "'$v_new_ip'") | ."ip-address"')
[ -z "$v_ipcheck" ] || exitError "IP \"$v_new_ip\" is already in use in this Subnet."
echo "Machine IP will be changed from \"$v_instancePriVnicIP\" to \"$v_new_ip\"."
v_extra_vnic_params=""
# --defined-tags
v_out=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."defined-tags"' | sed "s/'/'\\\''/g")
[ -z "$v_out" -o "$v_out" == "{}" ] || v_extra_vnic_params="${v_extra_vnic_params}--defined-tags '$v_out' \\"$'\n'
# --freeform-tags
v_out=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."freeform-tags"' | sed "s/'/'\\\''/g")
[ -z "$v_out" -o "$v_out" == "{}" ] || v_extra_vnic_params="${v_extra_vnic_params}--freeform-tags '$v_out' \\"$'\n'
v_extra_inst_params=""
# --vnic-display-name
v_out=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."display-name"' | sed "s/'/'\\\''/g")
[ -z "$v_out" ] || v_extra_inst_params="${v_extra_inst_params}--vnic-display-name '$v_out' \\"$'\n'
# --hostname-label
v_out=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."hostname-label"' | sed "s/'/'\\\''/g")
[ -z "$v_out" ] || v_extra_inst_params="${v_extra_inst_params}--hostname-label '$v_out' \\"$'\n'
# --skip-source-dest-check
v_out=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."skip-source-dest-check"' | sed "s/'/'\\\''/g")
[ -z "$v_out" ] || v_extra_inst_params="${v_extra_inst_params}--skip-source-dest-check '$v_out' \\"$'\n'
# --assign-public-ip
v_out=$(echo "$v_jsonprivnic" | ${v_jq} -rc '."public-ip" // empty' | sed "s/'/'\\\''/g")
if [ -n "$v_out" ]
then
if grep -q -F -x "$v_out" <(echo "$v_reservedpubsip")
then
v_extra_inst_params="${v_extra_inst_params}--assign-public-ip false \\"$'\n'
else
v_extra_inst_params="${v_extra_inst_params}--assign-public-ip true \\"$'\n'
fi
else
v_extra_inst_params="${v_extra_inst_params}--assign-public-ip false \\"$'\n'
fi
v_instancePriVnicPubIP="$v_out"
# --defined-tags
v_out=$(echo "$v_jsoninst" | ${v_jq} -rc '."defined-tags"' | sed "s/'/'\\\''/g")
[ -z "$v_out" -o "$v_out" == "{}" ] || v_extra_inst_params="${v_extra_inst_params}--defined-tags '$v_out' \\"$'\n'
# --freeform-tags
v_out=$(echo "$v_jsoninst" | ${v_jq} -rc '."freeform-tags"' | sed "s/'/'\\\''/g")
[ -z "$v_out" -o "$v_out" == "{}" ] || v_extra_inst_params="${v_extra_inst_params}--freeform-tags '$v_out' \\"$'\n'
# --metadata
v_out=$(echo "$v_jsoninst" | ${v_jq} -rc '."metadata"' | sed "s/'/'\\\''/g")
[ -z "$v_out" -o "$v_out" == "{}" ] || v_extra_inst_params="${v_extra_inst_params}--metadata '$v_out' \\"$'\n'
# --extended-metadata
v_out=$(echo "$v_jsoninst" | ${v_jq} -rc '."extended-metadata"' | sed "s/'/'\\\''/g")
[ -z "$v_out" -o "$v_out" == "{}" ] || v_extra_inst_params="${v_extra_inst_params}--extended-metadata '$v_out' \\"$'\n'
# --fault-domain
v_out=$(echo "$v_jsoninst" | ${v_jq} -rc '."fault-domain"' | sed "s/'/'\\\''/g")
[ -z "$v_out" ] || v_extra_inst_params="${v_extra_inst_params}--fault-domain '$v_out' \\"$'\n'
# --ipxe-script-file
v_out=$(echo "$v_jsoninst" | ${v_jq} -rc '."ipxe-script" // empty' | sed "s/'/'\\\''/g")
[ -z "$v_out" ] || v_extra_inst_params="${v_extra_inst_params}--ipxe-script-file '$v_out' \\"$'\n'
## List Vols
f_jsonvols=$(${v_oci} compute volume-attachment list ${v_compartment_arg} --all --instance-id "${v_instanceID}" | ${v_jq} -r '.data[] | select(."lifecycle-state" == "ATTACHED")')
## Save Files - Just for backup.
mkdir ${v_instanceID} && ret=$? || ret=$?
if [ $ret -ne 0 ]
then
exitError "Could not create execution folder. Check if previous run is incompleted or files permissions."
fi
[ -f ${v_instanceID}/inst.json ] || echo "$v_jsoninst" > ${v_instanceID}/inst.json
[ -f ${v_instanceID}/vnics.json ] || echo "$v_jsonvnics" > ${v_instanceID}/vnics.json
[ -f ${v_instanceID}/vols.json ] || echo "$f_jsonvols" > ${v_instanceID}/vols.json
v_runall=${v_instanceID}/runall.sh
## Stop Machine
cat >> "$v_runall" <<EOF
cd "${v_instanceID}"
# Stop Instance
${v_oci} compute instance action \\
--instance-id '${v_instanceID}' \\
--action SOFTSTOP \\
--wait-for-state STOPPED \\
--max-wait-seconds $v_ocicli_timeout \\
>> runall.log
ret=\$?
EOF
## Drop Machine
cat >> "$v_runall" <<EOF
# Terminate Instance
${v_oci} compute instance terminate \\
--force \\
--instance-id '${v_instanceID}' \\
--wait-for-state TERMINATED \\
--preserve-boot-volume true \\
--max-wait-seconds $v_ocicli_timeout \\
>> runall.log
ret=\$?
EOF
## Create New Machine
cat >> "$v_runall" <<EOF
# Create Instance
${v_oci} compute instance launch ${v_compartment_arg} \\
--availability-domain '${v_instanceAD}' \\
--shape '${v_instanceShape}' \\
--display-name '${v_inst_name}' \\
--source-boot-volume-id '${v_instanceBVID}' \\
--subnet-id '${v_instancePriVnicSubnetID}' \\
--private-ip '${v_new_ip}' \\
--wait-for-state RUNNING \\
--max-wait-seconds $v_ocicli_timeout \\
${v_extra_inst_params}>> instance.log
ret=\$?
cat instance.log >> runall.log
EOF
## New Instance ID
cat >> "$v_runall" <<EOF
# Define new vars
v_newInstanceID=\$(cat instance.log | ${v_jq} -rc '.data."id"')
v_newInstancePriVnicID=\$(${v_oci} compute instance list-vnics --all --instance-id "\${v_newInstanceID}" | ${v_jq} -rc '.data[] | select (."is-primary" == true) | ."id"')
EOF
## Update Primary VNIC
if [ -n "${v_extra_vnic_params}" ]
then
cat >> "$v_runall" <<EOF
# Primary VNIC update
${v_oci} network vnic update \\
--force \\
--vnic-id "\${v_newInstancePriVnicID}" \\
${v_extra_vnic_params}>> runall.log
ret=\$?
EOF
fi
## Assign reserved Pub IP to Primary VNIC
if [ -n "$v_instancePriVnicPubIP" ]
then
if grep -q -F -x "$v_instancePriVnicPubIP" <(echo "$v_reservedpubsip")
then
v_publicipid=$(echo "$v_jsonpubsip" | ${v_jq} -rc 'select(."ip-address" == "'"$v_instancePriVnicPubIP"'") | ."id"')
cat >> "$v_runall" <<EOF
# Primary VNIC assign Public IP
v_privateipid=\$(${v_oci} network private-ip list --all --ip-address "$v_new_ip" --subnet-id "${v_instancePriVnicSubnetID}" | ${v_jq} -rc '.data[]."id"')
${v_oci} network public-ip update \\
--public-ip-id '${v_publicipid}' \\
--private-ip-id "\${v_privateipid}" \\
--wait-for-state ASSIGNED \\
--max-wait-seconds $v_ocicli_timeout \\
>> runall.log
ret=\$?
EOF
fi
fi
## Create Aditional VNICs
f_instvnics=$(echo "$v_jsonsecvnic" | ${v_jq} -rc '."id"')
for v_instvnics in $f_instvnics
do
v_1=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."subnet-id"' | sed "s/'/'\\\''/g")
v_2=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."display-name"' | sed "s/'/'\\\''/g")
v_3=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."freeform-tags"' | sed "s/'/'\\\''/g")
v_4=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."hostname-label" // empty' | sed "s/'/'\\\''/g")
v_5=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."private-ip"' | sed "s/'/'\\\''/g")
v_6=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."public-ip" // empty' | sed "s/'/'\\\''/g")
v_7=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."skip-source-dest-check"' | sed "s/'/'\\\''/g")
v_8=$(echo "$v_jsonsecvnic" | ${v_jq} -rc 'select (."id" == "'${v_instvnics}'") | ."defined-tags"' | sed "s/'/'\\\''/g")
v_extra_vnic_params=""
[ -z "$v_1" ] || v_extra_vnic_params="${v_extra_vnic_params}--subnet-id '$v_1' \\"$'\n'
[ -z "$v_2" ] || v_extra_vnic_params="${v_extra_vnic_params}--vnic-display-name '$v_2' \\"$'\n'
[ -z "$v_3" ] || v_extra_vnic_params="${v_extra_vnic_params}--freeform-tags '$v_3' \\"$'\n'
[ -z "$v_4" ] || v_extra_vnic_params="${v_extra_vnic_params}--hostname-label '$v_4' \\"$'\n'
[ -z "$v_5" ] || v_extra_vnic_params="${v_extra_vnic_params}--private-ip '$v_5' \\"$'\n'
if [ -n "$v_6" ]
then
if grep -q -F -x "$v_6" <(echo "$v_reservedpubsip")
then
v_extra_vnic_params="${v_extra_vnic_params}--assign-public-ip false \\"$'\n'
else
v_extra_vnic_params="${v_extra_vnic_params}--assign-public-ip true \\"$'\n'
fi
else
v_extra_vnic_params="${v_extra_vnic_params}--assign-public-ip false \\"$'\n'
fi
[ -z "$v_7" ] || v_extra_vnic_params="${v_extra_vnic_params}--skip-source-dest-check '$v_7' \\"$'\n'
[ -z "$v_8" ] || v_extra_vnic_params="${v_extra_vnic_params}--defined-tags '$v_8' \\"$'\n'
cat >> "$v_runall" <<EOF
# Add VNIC
${v_oci} compute instance attach-vnic \\
--instance-id "\${v_newInstanceID}" \\
--wait \\
${v_extra_vnic_params}>> runall.log
ret=\$?
EOF
if [ -n "$v_6" ]
then
if grep -q -F -x "$v_6" <(echo "$v_reservedpubsip")
then
v_publicipid=$(echo "$v_jsonpubsip" | ${v_jq} -rc 'select(."ip-address" == "'"$v_6"'") | ."id"')
cat >> "$v_runall" <<EOF
# Secondary VNIC assign Public IP
v_privateipid=\$(${v_oci} network private-ip list --all --ip-address "$v_5" --subnet-id "$v_1" | ${v_jq} -rc '.data[]."id"')
${v_oci} network public-ip update \\
--public-ip-id '${v_publicipid}' \\
--private-ip-id "\${v_privateipid}" \\
--wait-for-state ASSIGNED \\
--max-wait-seconds $v_ocicli_timeout \\
>> runall.log
ret=\$?
EOF
fi
fi
done
## Attach Vols
f_instvols=$(echo "$f_jsonvols" | ${v_jq} -rc '."id"')
for v_instvols in $f_instvols
do
v_volid=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."volume-id"' | sed "s/'/'\\\''/g")
v_volro=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."is-read-only"' | sed "s/'/'\\\''/g")
v_voltype=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."attachment-type"' | sed "s/'/'\\\''/g")
cat >> "$v_runall" <<EOF
# Attach Volume
${v_oci} compute volume-attachment attach \\
--instance-id "\${v_newInstanceID}" \\
--type '${v_voltype}' \\
--volume-id '${v_volid}' \\
--is-read-only '${v_volro}' \\
--wait-for-state ATTACHED \\
--max-wait-seconds $v_ocicli_timeout \\
>> runall.log
ret=\$?
EOF
done
## List Steps
echo "Following steps will be executed:"
echo "- Instance \"${v_inst_name}\"(${v_instanceID}) will be stopped."
echo "- Instance \"${v_inst_name}\"(${v_instanceID}) will be terminated."
echo "- New instance \"${v_inst_name}\" will be created with same boot volume and attributes (new OCID generated)."
[ -z "$v_extra_vnic_params" ] || echo "- Primary VNIC on new instance \"${v_inst_name}\" will be updated."
[ -z "$v_jsonsecvnic" ] || echo "- Secondary VNICs will be reattach."
[ -z "$f_jsonvols" ] || echo "- Block Volumes will be reattach."
echo "Execution script created at \"$v_runall\" file."
echo -n "Type \"YES\" to execute it and apply the changes: "
read v_input
[ "$v_input" == "YES" ] || exitError "Script aborted."
## Public IP Notice
v_out=$(echo "$v_jsonvnics" | ${v_jq} -rc '."public-ip" // empty')
if [ -n "$v_out" ]
then
v_ephemeralips=$(comm -2 -3 <(sort <(echo "$v_out")) <(sort <(echo "$v_reservedpubsip")))
if [ -n "$v_ephemeralips" ]
then
echo "This instance has some VNICs with Ephemeral Public IPs assigned: $(echo "$v_ephemeralips" | tr "\n" "," | sed 's/,$//')."
echo "Note that recreating the Machine will reassign a different Public IP."
echo -n "Type \"YES\" to continue: "
read v_input
[ "$v_input" == "YES" ] || exitError "Script aborted."
fi
fi
## Run Script:
set -x
. "$v_runall"
cd -
set +x
echo "MACHINE RECREATED SUCCESSFULLY"
## ISCSI Vols
[ -z "$f_jsonvols" ] || tempshell=${v_instanceID}/tempshell.sh
[ -z "$f_jsonvols" ] || echo "set -x" > "$tempshell"
for v_instvols in $f_instvols
do
v_iqn=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."iqn"')
v_ipv4=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."ipv4"')
v_port=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."port"')
echo "sudo iscsiadm -m node -T ${v_iqn} -p ${v_ipv4}:${v_port} -u" >> "$tempshell"
echo "sudo iscsiadm -m node -o delete -T ${v_iqn} -p ${v_ipv4}:${v_port}" >> "$tempshell"
done
f_jsonvols=$(${v_oci} compute volume-attachment list ${v_compartment_arg} --all --instance-id "${v_newInstanceID}" | ${v_jq} -r '.data[] | select(."lifecycle-state" == "ATTACHED")')
f_instvols=$(echo "$f_jsonvols" | ${v_jq} -rc '."id"')
for v_instvols in $f_instvols
do
v_iqn=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."iqn"')
v_ipv4=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."ipv4"')
v_port=$(echo "$f_jsonvols" | ${v_jq} -rc 'select (."id" == "'${v_instvols}'") | ."port"')
echo "sudo iscsiadm -m node -o new -T ${v_iqn} -p ${v_ipv4}:${v_port}" >> "$tempshell"
echo "sudo iscsiadm -m node -o update -T ${v_iqn} -n node.startup -v automatic" >> "$tempshell"
echo "sudo iscsiadm -m node -T ${v_iqn} -p ${v_ipv4}:${v_port} -l" >> "$tempshell"
done
## Ask if reconfig using SSH
if [ -s "$tempshell" ]
then
echo "set +x" >> "$tempshell"
echo "#### BEGIN - NEW DISKS IPS DISCOVERY ####"
cat "$tempshell"
echo "#### END - NEW DISKS IPS DISCOVERY ####"
echo -n "Script above must be executed in target machine. Type \"YES\" to apply the changes via SSH: "
read v_input
if [ "$v_input" == "YES" ]
then
## Wait SSH UP
echo 'Checking Server availability..'
v_total=40
v_loop=1
while [ ${v_loop} -le ${v_total} ]
do
timeout 5 bash -c "true &>/dev/null </dev/tcp/$v_new_ip/22" && ret=$? || ret=$?
[ $ret -eq 0 ] && v_loop=$((v_total+1)) && echo 'Server Available!' && sleep 5
[ $ret -ne 0 ] && echo "Server Unreachable, please wait. Try ${v_loop} of ${v_total}." && v_loop=$((v_loop+1)) && sleep 10
done
## Update Attachments
ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no opc@${v_new_ip} "bash -s" < "$tempshell"
ret=$?
## Restart Machine
echo 'Bouncing the instance..'
set -x
${v_oci} compute instance action \
--instance-id "${v_newInstanceID}" \
--action SOFTRESET \
--wait-for-state RUNNING \
--max-wait-seconds $v_ocicli_timeout > ${v_instanceID}/tempshell.log
set +x
fi
fi
echo "SCRIPT EXECUTED SUCCESSFULLY"
exit 0
###