-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazurespot.py
468 lines (434 loc) · 15.2 KB
/
azurespot.py
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
from pystackql import StackQL
import os, time, schedule
def create_nic():
"""Insert into Network Interfaces."""
query = """
Insert into azure.network.interfaces
(
resourceGroupName,
subscriptionId,
networkInterfaceName,
data__location,
data__properties
)
select
'%s',
'%s',
'%s',
location,
json_replace(json_remove(properties,
'$.allowPort25Out',
'$.auxiliarySku',
'$.provisioningState',
'$.resourceGuid',
'$.macAddress',
'$.vnetEncryptionSupported',
'$.enableIPForwarding',
'$.defaultOutboundAccess',
'$.primary',
'$.virtualMachine',
'$.hostedWorkloads',
'$.tapConfigurations',
'$.nicType',
'$.auxiliaryMode',
'$.ipConfigurations[0].id',
'$.ipConfigurations[0].etag',
'$.ipConfigurations[0].type',
'$.ipConfigurations[0].properties.provisioningState',
'$.ipConfigurations[0].properties.privateIPAddress',
'$.ipConfigurations[0].properties.privateIPAllocationMethod',
'$.ipConfigurations[0].properties.primary',
'$.ipConfigurations[0].properties.privateIPAddressVersion'
),
'$.ipConfigurations[0].name',
'vmss-flex-vnet-nic01-defaultIpConfiguration'
)
from
azure.network.interfaces
where subscriptionId = '%s'
and resourceGroupName = '%s'
and networkInterfaceName = '%s'
;""" % (rg_name,subscription_id,nic_name,subscription_id,rg_name,vm['nic_name'])
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in create_nic for subscription_id = {subscription_id}, rg = {rg_name}, networkInterfaceName = {vm['nic_name']}: {e}")
else:
if res['message'] == success_message:
global create_nic_ind
create_nic_ind = True
print(res)
else:
print(f"Error in create_nic for subscription_id = {subscription_id}, rg = {rg_name}, networkInterfaceName = {vm['nic_name']}: {res}")
def undo_create_nic():
"""Delete Network Interfaces."""
query = """
Delete from azure.network.interfaces
where subscriptionId = '%s'
and resourceGroupName = '%s'
and networkInterfaceName = '%s'
;""" % (rg_name,subscription_id,nic_name)
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in undo_create_nic for subscription_id = {subscription_id}, rg = {rg_name}, networkInterfaceName = {nic_name}: {e}")
else:
if res['message'] == success_message:
print(res)
else:
print(f"Error in undo_create_nic for subscription_id = {subscription_id}, rg = {rg_name}, networkInterfaceName = {nic_name}: {res}")
def create_nic_dep():
"""Check if nic is deployed."""
query = """
select name
from azure.network.interfaces
where subscriptionId = '%s'
and resourceGroupName = '%s'
and networkInterfaceName = '%s'
;""" % (subscription_id,rg_name,nic_name)
try:
res = stackql.execute(query)
except Exception as e:
print(f"Error in create_nic_dep for subscription_id = {subscription_id}, rg = {rg_name}, networkInterfaceName = {nic_name}: {e}")
else:
if nic_name == res[0]['name']:
global create_nic_deployed
create_nic_deployed = True
print(res)
else:
print(f"Error in create_nic_dep for subscription_id = {subscription_id}, rg = {rg_name}, networkInterfaceName = {nic_name}: {res}")
def create_spot_vm():
"""Insert into Virtual Machines."""
query = """
Insert into azure.compute.virtual_machines
(
resourceGroupName,
subscriptionId,
vmName,
data__location,
data__properties
)
select
'%s',
'%s',
'%s',
location,
json_set(
json_remove
(
properties,
'$.provisioningState',
'$.vmId',
'$.timeCreated',
'$.storageProfile.osDisk.managedDisk.id',
'$.osProfile.requireGuestProvisionSignal'
),
'$.storageProfile.osDisk.name',
'vmss_OsDisk_1_' || '%s',
'$.osProfile.computerName',
'vmname-' || '%s',
'$.osProfile.adminPassword',
'Spotvm123@Apr2024',
'$.networkProfile.networkInterfaces[0].id',
'/subscriptions/' || '%s'|| '/resourceGroups/' || '%s' ||'/providers/Microsoft.Network/networkInterfaces/' || '%s',
'$.priority',
'Spot',
'$.evictionPolicy',
'Delete',
'$.billingProfile.maxPrice',
-1
)
from
azure.compute.virtual_machines
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
;""" % (rg_name,subscription_id,vm_name,vm_name,vm_name.replace('_','-'),subscription_id,rg_name,nic_name,subscription_id,rg_name,vm['vm_name'])
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in create_spot_vm for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {e}")
else:
if res['message'] == success_message:
global create_spot_vm_ind
create_spot_vm_ind = True
print(res)
else:
print(f"Error in create_spot_vm for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {res}")
def undo_create_spot_vm():
"""Delete Virtual Machines."""
query = """
Delete from azure.compute.virtual_machines
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
;""" % (subscription_id,rg_name,vm_name)
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in undo_create_spot_vm for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {e}")
else:
if res['message'] == success_message:
print(res)
else:
print(f"Error in create_spot_vm for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {res}")
def create_spot_vm_dep():
"""Check if spot vm is deployed."""
query = """
select name
from azure.compute.virtual_machines
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
;""" % (subscription_id,rg_name,vm_name)
try:
res = stackql.execute(query)
except Exception as e:
print(f"Error in create_spot_vm_dep for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {e}")
else:
if vm_name == res[0]['name']:
global create_spot_vm_deployed
create_spot_vm_deployed = True
print(res)
else:
print(f"Error in create_spot_vm_dep for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {res}")
def create_vm_extension():
"""Create vm Extension."""
query = """
Insert into azure.compute.virtual_machine_extensions
(
resourceGroupName,
subscriptionId,
vmExtensionName,
vmName,
data__location,
data__properties
)
select
'%s',
'%s',
name,
'%s',
location,
json_remove(properties,'$.provisioningState')
from
azure.compute.virtual_machine_extensions
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
;""" % (rg_name,subscription_id,vm_name,subscription_id,rg_name,vm['vm_name'])
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in create_vm_extension for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {e}")
else:
if res['message'] == success_message:
global create_vm_extension_ind
create_vm_extension_ind = True
print(res)
else:
print(f"Error in create_vm_extension for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {res}")
def undo_create_vm_extension():
"""Delete vm Extension."""
query = """
Delete from azure.compute.virtual_machine_extensions
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
and vmExtensionName in (
select name
from
azure.compute.virtual_machine_extensions
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
)
;""" % (subscription_id,rg_name,vm_name,subscription_id,rg_name,vm_name)
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in undo_create_vm_extension for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {e}")
else:
if res['message'] == success_message:
print(res)
else:
print(f"Error in undo_create_vm_extension for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {e}")
def create_vm_extension_dep():
"""Check if vm Extension is deployed."""
query = """
select name
from
azure.compute.virtual_machine_extensions
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
;""" % (subscription_id,rg_name,vm_name)
try:
res = stackql.execute(query)
except Exception as e:
print(f"Error in create_vm_extension_dep for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {e}")
else:
if res[0]['name']:
global create_vm_extension_deployed
create_vm_extension_deployed = True
print(res)
else:
print(f"Error in create_vm_extension_dep for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm_name}: {res}")
def delete_OD_vm():
"""Delete from Virtual Machines."""
query = """
Delete
from azure.compute.virtual_machines
where subscriptionId = '%s'
and resourceGroupName = '%s'
and vmName = '%s'
;""" % (subscription_id,rg_name,vm['vm_name'])
try:
res = stackql.executeStmt(query)
except Exception as e:
print(f"Error in delete_OD_vm for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {e}")
else:
if res['message'] == success_message:
global delete_OD_vm_ind
delete_OD_vm_ind = True
print(res)
else:
print(f"Error in delete_OD_vm for subscription_id = {subscription_id}, rg = {rg_name}, vmName = {vm['vm_name']}: {res}")
def process_for_each_rg():
query = """
select
a.name as vmss_name,
c.name as vm_name,
SPLIT_PART(json_extract(c.properties,'$.networkProfile.networkInterfaces[0].id'), '/', -1)as nic_name
from
azure.compute.virtual_machine_scale_sets a
inner join azure.compute.virtual_machine_scale_set_vms b
on a.name = b.virtualMachineScaleSetName
inner join azure.compute.virtual_machines c
on b.name = c.name
where subscriptionId = '%s'
and resourceGroupName = '%s'
and json_extract(c.properties,'$.priority') is null
%s
order by vmss_name, vm_name
;""" % (subscription_id,rg_name,query2)
try:
vms = stackql.execute(query)
except Exception as e:
print(f"Error in process_for_each_rg for subscription_id = {subscription_id}, rg = {rg_name} : {e}")
else:
print(vms)
if not vms:
print(f"No OD VMs to replace for Subscription_id = {subscription_id}, rg = {rg_name} ")
else:
global vm, i, create_nic_ind, create_spot_vm_ind, create_vm_extension_ind, delete_OD_vm_ind
global create_nic_deployed, create_spot_vm_deployed, create_vm_extension_deployed
for i, vm in enumerate(vms):
#Reset the flag for every iteration
create_nic_ind, create_spot_vm_ind, create_vm_extension_ind, delete_OD_vm_ind = False, False, False, False
create_nic_deployed, create_spot_vm_deployed, create_vm_extension_deployed = False, False, False
#skip the last vm in the vmss so there is atleast one OD VM
if i == len(vms) -1:
break
elif (vms[i]['vmss_name'] != vms[i+1]['vmss_name']):
continue
global vm_name, nic_name
vm_name = vm['vmss_name'] + '-manual-' + vm['vm_name']
nic_name = vm_name + '-nic'
#1. create nic
create_nic()
#if error continue to next iteration
if not create_nic_ind:
continue
for i in range(5):
time.sleep(2)
create_nic_dep()
if create_nic_deployed:
break
#if not deployed continue to next iteration
if not create_nic_deployed:
continue
#2. create spot_vm
create_spot_vm()
#if error continue to next iteration
if not create_spot_vm_ind:
undo_create_nic()
continue
for i in range(5):
time.sleep(2)
create_spot_vm_dep()
if create_spot_vm_deployed:
break
#if not deployed continue to next iteration
if not create_spot_vm_deployed:
undo_create_nic()
continue
#3. create vm_extension
create_vm_extension()
#if error continue to next iteration
if not create_vm_extension_ind:
undo_create_nic()
undo_create_spot_vm()
continue
for i in range(5):
time.sleep(2)
create_vm_extension_dep()
if create_vm_extension_deployed:
break
#if not deployed continue to next iteration
if not create_vm_extension_deployed:
undo_create_nic()
undo_create_spot_vm()
continue
#4. Delete OD VM
delete_OD_vm()
#if error continue to next iteration
if not delete_OD_vm_ind:
undo_create_nic()
undo_create_spot_vm()
undo_create_vm_extension()
def get_resource_group():
query = """
select name as rg_name
from
azure.resources.resource_groups
where subscriptionId = '%s'
order by rg_name
;""" % (subscription_id)
try:
rgs = stackql.execute(query)
except Exception as e:
print(f"Error in getting rg_name for subscription_id = {subscription_id} : {e}")
else:
for rg in rgs:
print(rg)
global rg_name
rg_name = rg['rg_name']
process_for_each_rg()
# start of main flow
stackql = StackQL()
stackql_query = "REGISTRY PULL azure"
result = stackql.executeStmt(stackql_query)
print(result)
success_message = 'The operation was despatched successfully\n'
subscription_id = os.environ["AZURE_SUBSCRIPTION_ID"]
convert_to_spot = os.environ["CONVERT_TO_SPOT"]
print(convert_to_spot)
match convert_to_spot:
case 'ALL':
query2 = ''
case 'TRUE':
query2 = """ and JSON_EXTRACT(a.tags,'$.convert_to_spot') = 'True' """
case 'FALSE':
query2 = """ and JSON_EXTRACT(a.tags,'$.convert_to_spot') is null """
case _:
print(f"Unacceptable tag value for convert_to_spot: {convert_to_spot}")
exit()
# schedule the task to run every hour
schedule.every().hour.at(":01").do(get_resource_group)
#schedule.every(10).minutes.do(get_resource_group)
# run all jobs now
#schedule.run_all()
while True:
schedule.run_pending()
time.sleep(1)