forked from jagilber/powershellScripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
azure-rm-vmss-run-command.ps1
469 lines (390 loc) · 14.5 KB
/
azure-rm-vmss-run-command.ps1
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
<#
.SYNOPSIS
powershell script to invoke azure rm invoke-azurermvmssvmruncommand command with output on azure vm scaleset vms
.DESCRIPTION
powershell script to invoke azure rm invoke-azurermvmssvmruncommand command with output on azure vm scaleset vms
Invoke-AzureRmVmssVMRunCommand -ResourceGroupName {{resourceGroupName}} -VMScaleSetName{{scalesetName}} -InstanceId {{instanceId}} -ScriptPath c:\temp\test1.ps1 -Parameter @{'name' = 'patterns';'value' = "{{certthumb1}},{{certthumb2}}"} -Verbose -Debug -CommandId $commandId
Get-AzureRmVMRunCommandDocument -Location westus | select ID, OSType, Label
.NOTES
File Name : azure-rm-vmss-run-command.ps1
Author : jagilber
Version : 190403
History :
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -script c:\temp\test.ps1
will prompt for resource group, vm scaleset name, and instance ids to run powershell script c:\temp\test.ps1 on
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -script c:\temp\test.ps1 -resourceGroup testrg
will prompt for vm scaleset name, and instance ids to run powershell script c:\temp\test.ps1 on
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -script c:\temp\test.ps1 -resourceGroup testrg -vmssname nt0
will prompt for instance ids to run powershell script c:\temp\test.ps1 on
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -script c:\temp\test.ps1 -resourceGroup testrg -vmssname nt0 -instanceid 0
will run powershell script c:\temp\test.ps1 on instance id 0
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -resourceGroup testrg -vmssname nt0 -instanceid 0
will run test powershell script on instance id 0
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -listCommandIds
will list all possible commandIds available for command
.EXAMPLE
.\azure-rm-vmss-run-command.ps1 -removeExtension
will remove the invoke run command extension that is required for running commands.
it is *not* required to remove extension
.PARAMETER resourceGroup
name of reource group containing vm scale set. if not provided, script will prompt for input.
.PARAMETER vmssName
name of vm scale set. if not provided, script will prompt for input.
.PARAMETER instanceId
string array of instance id(s). if not provided, script will prompt for input.
examples: 0 or 0-2 or 0,1,2
.PARAMETER script
path and file name to script to invoke on vm scale set nodes
.PARAMETER parameters
hashtable of script arguments in format of @{"name" = "value"}
exmaple: @{"adminUserName" = "cloudadmin"}
.PARAMETER jsonOutputFile
path and file name of json output file to populate with results.
.PARAMETER commandId
optional commandId to invoke other than the default of RunCommand. use -listCommandIds argument for list of commandIds available.
.PARAMETER removeExtension
switch to invoke run command, an extension is dynamically installed. this may or may not be already present and causes no harm.
after completing all commands, the extension can be removed with -removeExtension switch
.PARAMETER listCommandIds
swtich to list optional commandIds and return
.PARAMETER force
switch to force invocation of command on vm scaleset node regardless of provisioningstate. Any state other than 'successful' may fail.
.LINK
https://github.com/jagilber/powershellScripts/blob/master/azure-rm-vmss-run-command.ps1
#>
param(
[string]$resourceGroup,
[string]$vmssName,
[string]$instanceId,
[string]$script, # script string content or file path to script
[hashtable]$parameters = @{}, # hashtable @{"name" = "value";}
[string]$jsonOutputFile,
[string]$commandId = "RunPowerShellScript",
[switch]$removeExtension,
[switch]$listCommandIds,
[switch]$force
)
$ErrorActionPreference = "silentlycontinue"
$global:jobs = @{}
$global:joboutputs = @{}
$tempScript = ".\tempscript.ps1"
$removeCommandId = "RemoveRunCommandWindowsExtension"
$global:startTime = get-date
$global:success = 0
$global:fail = 0
$global:extensionInstalled = 0
$global:extensionNotInstalled = 0
function main()
{
$error.Clear()
get-job | remove-job -Force
if (!(check-module))
{
return
}
if (!(Get-AzureRmResourceGroup))
{
connect-azurermaccount
if ($error)
{
return
}
}
if($listCommandIds)
{
Get-AzureRmVMRunCommandDocument -Location westus | Select-Object ID, OSType, Label
return
}
if (!$script)
{
Write-Warning "using test script. use -script and -parameters arguments to supply script and parameters"
$script = node-psTestScript
}
if (!$resourceGroup -or !$vmssName)
{
$nodePrompt = $true
$count = 1
$resourceGroups = Get-AzureRmResourceGroup
foreach ($rg in $resourceGroups)
{
write-host "$($count). $($rg.ResourceGroupName)"
$count++
}
if (($number = read-host "enter number of the resource group to query or ctrl-c to exit:") -le $count)
{
$resourceGroup = $resourceGroups[$number - 1].ResourceGroupName
write-host $resourceGroup
}
$count = 1
$scalesets = Get-AzureRmVmss -ResourceGroupName $resourceGroup
foreach ($scaleset in $scalesets)
{
write-host "$($count). $($scaleset.Name)"
$count++
}
if (($number = read-host "enter number of the cluster to query or ctrl-c to exit:") -le $count)
{
$vmssName = $scalesets[$number - 1].Name
write-host $vmssName
}
}
$scaleset = get-azurermvmss -ResourceGroupName $resourceGroup -VMScaleSetName $vmssName
$maxInstanceId = $scaleset.Sku.Capacity
write-host "$vmssName capacity: $maxInstanceId (0 - $($maxInstanceId - 1))"
if (!$instanceId)
{
$instanceIds = generate-list "0-$($maxInstanceId - 1)"
if ($nodePrompt)
{
$numbers = read-host "enter 0 based, comma separated list of number(s), or number range of the nodes to invoke script:"
if ($numbers)
{
$instanceIds = generate-list $numbers
}
}
}
else
{
$instanceIds = generate-list $instanceId
}
write-host $instanceIds
write-host "checking provisioning states"
$instances = Get-AzureRmVmssVM -ResourceGroupName sfjagilber1nt3 -VMScaleSetName nt0 -InstanceView
write-host "$($instances | out-string)"
if($instances.ProvisioningState -inotmatch "succeeded" -and !$force)
{
Write-Warning "not all nodes are in 'succeeded' provisioning state so command may fail. returning. use -force to attempt command regardless of provisioning state."
return
}
if (!(test-path $script))
{
out-file -InputObject $script -filepath $tempscript -Force
$script = $tempScript
}
if ($removeExtension)
{
$commandId = $removeCommandId
}
$result = run-vmssPsCommand -resourceGroup $resourceGroup `
-vmssName $vmssName `
-instanceIds $instanceIds `
-script $script `
-parameters $parameters
write-host $result
$count = 0
monitor-jobs
if ((test-path $tempScript))
{
remove-item $tempScript -Force
}
if ($jsonOutputFile)
{
write-host "saving json to file $jsonOutputFile"
#out-file -InputObject ($global:joboutputs | ConvertTo-Json) -filepath $jsonOutputFile -force
($global:joboutputs | convertto-json).replace("\r\n", "").replace("\`"", "`"").replace("`"{", "{").replace("}`"", "}") | out-file $jsonOutputFile -Force
}
$global:joboutputs | fl *
write-host "finished. output stored in `$global:joboutputs"
write-host "total fail:$($global:fail) total success:$($global:success)"
if ($error)
{
return 1
}
}
function check-module()
{
get-command Invoke-AzureRmVmssVMRunCommand -ErrorAction SilentlyContinue
if ($error)
{
$error.clear()
write-warning "Invoke-AzureRmVmssVMRunCommand not installed."
if ((read-host "is it ok to install latest azurerm?[y|n]") -imatch "y")
{
$error.clear()
remove-module azurerm
install-module azurerm -AllowClobber -force
import-module azurerm
}
else
{
return $false
}
if ($error)
{
return $false
}
}
}
function generate-list([string]$strList)
{
$list = [collections.arraylist]@()
foreach ($split in $strList.Replace(" ", "").Split(","))
{
if ($split.contains("-"))
{
[int]$lbound = [int][regex]::match($split, ".+?-").value.trimend("-")
[int]$ubound = [int][regex]::match($split, "-.+").value.trimstart("-")
while ($lbound -le $ubound)
{
[void]$list.add($lbound)
$lbound++
}
}
else
{
[void]$list.add($split)
}
}
return $list
}
function monitor-jobs()
{
write-host "first time only can take up to 45 minutes if the run command extension is not installed.
subsequent executions take between a 1 and 30 minutes..." -foregroundcolor yellow
write-host "use -removeExtension to remove extension or reset"
$originalJobsCount = (get-job).count
$minCount = 1
$count = 0
while (get-job)
{
foreach ($job in get-job)
{
write-verbose ($job | fl * | out-string)
if ($job.state -ine "running")
{
write-host ($job | fl * | out-string)
if ($job.state -imatch "fail" -or $job.statusmessage -imatch "fail")
{
[void]$global:joboutputs.add(($global:jobs[$job.id]), ($job | ConvertTo-Json))
$global:fail++
}
else
{
[void]$global:joboutputs.add(($global:jobs[$job.id]), ($job.output | ConvertTo-Json))
$global:success++
}
write-host ($job.output | ConvertTo-Json)
$job.output
Remove-Job -Id $job.Id -Force
}
else
{
$jobInfo = Receive-Job -Job $job
if ($jobInfo)
{
write-host ($jobInfo | fl * | out-string)
}
}
}
if ($count -ge 60)
{
write-host $minCount
$minCount++
$count = 0
}
write-host "." -NoNewline
$instances = Get-AzureRmVmssVM -ResourceGroupName $resourceGroup -vmscalesetname $vmssName -InstanceView
write-verbose "$($instances | convertto-json)"
$currentJobsCount = (get-job).count
$activity = "$($commandId) $($originalJobsCount - $currentJobsCount) / $($originalJobsCount) vm jobs completed. (use -removeExtension to remove extension):"
$status = "extension installed:$($global:extensionInstalled) not installed:$($global:extensionNotInstalled) fail results:$($global:fail)" `
+ " success results:$($global:success) time elapsed:$(((get-date) - $global:startTime).TotalMinutes.ToString("0.0")) minutes"
$percentComplete = ((($originalJobsCount - $currentJobsCount) / $originalJobsCount) * 100)
Write-Progress -Activity $activity -Status $status -PercentComplete $percentComplete
Start-Sleep -Seconds 1
$count++
}
}
function node-psTestScript()
{
return "# $(get-date)
wmic qfe;
ipconfig;
hostname;"
}
function run-vmssPsCommand ($resourceGroup, $vmssName, $instanceIds, [string]$script, $parameters)
{
foreach ($instanceId in $instanceIds)
{
$instance = get-azurermvmssvm -ResourceGroupName $resourceGroup -VMScaleSetName $vmssName -InstanceId $instanceId -InstanceView
write-host "instance id: $($instanceId)`r`n$($instance.VmAgent.ExtensionHandlers | convertto-json)" -ForegroundColor Cyan
if (!($instance.VmAgent.ExtensionHandlers.Type -imatch "RunCommandWindows"))
{
Write-Warning "run command extension not installed."
$global:extensionNotInstalled++
if ($removeExtension)
{
continue
}
Write-Warning "this will install extension automatically which will take additional time."
}
else
{
$global:extensionInstalled++
}
if ($removeExtension)
{
$script = $null
$parameters = $null
write-host "Invoke-AzureRmVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-CommandId $commandId `
-AsJob"
$response = Invoke-AzureRmVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-CommandId $commandId `
-AsJob
}
elseif ($parameters)
{
write-host "Invoke-AzureRmVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-Parameter $parameters `
-CommandId $commandId `
-AsJob"
$response = Invoke-AzureRmVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-Parameter $parameters `
-CommandId $commandId `
-AsJob
}
else
{
write-host "Invoke-AzureRmVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-CommandId $commandId `
-AsJob"
$response = Invoke-AzureRmVmssVMRunCommand -ResourceGroupName $resourceGroup `
-VMScaleSetName $vmssName `
-InstanceId $instanceId `
-ScriptPath $script `
-CommandId $commandId `
-AsJob
}
if ($response)
{
$global:jobs.Add($response.Id, "$resourceGroup`:$vmssName`:$instanceId")
write-host ($response | fl * | out-string)
}
else
{
write-warning "no response from command!"
$global:fail++
}
}
}
main