mirror of
https://github.com/actions/runner-images.git
synced 2025-12-19 08:22:12 +00:00
add Az 3.5.0
This commit is contained in:
@@ -3,195 +3,66 @@
|
|||||||
## Desc: Install Azure PowerShell modules
|
## Desc: Install Azure PowerShell modules
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
Add-Type -AssemblyName System.IO.Compression.FileSystem
|
|
||||||
|
|
||||||
function Download-Zip
|
|
||||||
{
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param(
|
|
||||||
[Parameter(
|
|
||||||
Mandatory = $true
|
|
||||||
)]
|
|
||||||
[string]
|
|
||||||
$BlobUri
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Host "Downloading the zip from blob: '$BlobUri'"
|
|
||||||
$fileName = "azureps_" + "$(Get-Random)" + ".zip"
|
|
||||||
$targetLocation = Join-Path $ENV:Temp -ChildPath $fileName
|
|
||||||
Write-Host "Download target location: '$targetLocation'"
|
|
||||||
$webClient = New-Object Net.WebClient
|
|
||||||
$null = $webClient.DownloadFileAsync($BlobUri, $targetLocation)
|
|
||||||
while ($webClient.IsBusy) { }
|
|
||||||
Write-Host "Download complete. Target Location: '$targetLocation'"
|
|
||||||
return $targetLocation
|
|
||||||
}
|
|
||||||
|
|
||||||
function Extract-Zip
|
|
||||||
{
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param(
|
|
||||||
[Parameter(
|
|
||||||
Mandatory = $true
|
|
||||||
)]
|
|
||||||
[string]
|
|
||||||
$ZipFilePath,
|
|
||||||
|
|
||||||
[Parameter(
|
|
||||||
Mandatory = $true
|
|
||||||
)]
|
|
||||||
[string]
|
|
||||||
$TargetLocation
|
|
||||||
)
|
|
||||||
|
|
||||||
Write-Host "Expanding the Zip File: '$ZipFilePath'. Target: '$TargetLocation'"
|
|
||||||
$null = [System.IO.Compression.ZipFile]::ExtractToDirectory($ZipFilePath, $TargetLocation)
|
|
||||||
Write-Host "Extraction completed successfully."
|
|
||||||
}
|
|
||||||
|
|
||||||
Set-PSRepository -InstallationPolicy Trusted -Name PSGallery
|
Set-PSRepository -InstallationPolicy Trusted -Name PSGallery
|
||||||
|
|
||||||
# We try to detect the whether Azure PowerShell is installed using .msi file. If it is installed, we find it's version, then it needs to be uninstalled manually (because the uninstallation requires the PowerShell session to be closed)
|
|
||||||
$regKey = "HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*"
|
|
||||||
$installedApplications = Get-ItemProperty -Path $regKey
|
|
||||||
$SdkVersion = ($installedApplications | Where-Object { $_.DisplayName -and $_.DisplayName.toLower().Contains("microsoft azure powershell") } | Select-Object -First 1).DisplayVersion
|
|
||||||
|
|
||||||
if($SdkVersion -eq $null)
|
|
||||||
{
|
|
||||||
Write-Host "No .msi Installation Present"
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "An Azure PowerShell Installation through installer has been detected. Please close this powershell session and manually uninstall the Azure PowerShell from the Add or Remove Programs in the Control Panel. Then, rerun this script from an Admin PowerShell"
|
|
||||||
throw "An Azure PowerShell Installation through installer has been detected. Please close this powershell session and manually uninstall the Azure PowerShell from the Add or Remove Programs in the Control Panel. Then, rerun this script from an Admin PowerShell"
|
|
||||||
}
|
|
||||||
|
|
||||||
# We will try to uninstall any installation of Azure PowerShell
|
|
||||||
|
|
||||||
$modules = Get-Module -Name Azure -ListAvailable
|
|
||||||
Write-Host "The Azure Modules initially present are:"
|
|
||||||
$modules | Select-Object Name,Version,Path | Format-Table
|
|
||||||
|
|
||||||
foreach($module in $modules)
|
|
||||||
{
|
|
||||||
# add logging for telling what module we are working on now
|
|
||||||
if(Test-Path -LiteralPath $module.Path)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Uninstall-Module -Name Azure -RequiredVersion $module.Version.tostring() -Force
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
Write-Host "The Uninstallation of Azure Module version: $($module.Version.tostring()) failed with the error: $($_.Exception.Message) . Please Check if there isn't any other PowerShell session open."
|
|
||||||
throw $_.Exception.Message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$modules = Get-Module -Name AzureRM -ListAvailable
|
|
||||||
Write-Host "The AzureRM Modules initially present are:"
|
|
||||||
$modules | Select-Object Name,Version,Path | Format-Table
|
|
||||||
|
|
||||||
foreach($module in $modules)
|
|
||||||
{
|
|
||||||
# add logging for telling what module we are working on now
|
|
||||||
if(Test-Path -LiteralPath $module.Path)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Uninstall-Module -Name AzureRM -RequiredVersion $module.Version.tostring() -Force
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
Write-Host "The Uninstallation of AzureRM Module version: $($module.Version.tostring()) failed with the error: $($_.Exception.Message) . Please Check if there isn't any other PowerShell session open."
|
|
||||||
throw $_.Exception.Message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#after this, the only installations available through a Get-Module cmdlet should be nothing
|
|
||||||
|
|
||||||
$modules = Get-Module -Name Azure -ListAvailable
|
|
||||||
|
|
||||||
foreach($module in $modules)
|
|
||||||
{
|
|
||||||
Write-Host "Module found: $($module.Name) Module Version: $($module.Version)"
|
|
||||||
if($module.Version.ToString() -ne " ")
|
|
||||||
{
|
|
||||||
Write-Host "Another installation of Azure module is detected with version $($module.Version.ToString()) at path: $($module.Path)"
|
|
||||||
throw "Azure module uninstallation unsuccessful"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$modules = Get-Module -Name AzureRM -ListAvailable
|
|
||||||
|
|
||||||
foreach($module in $modules)
|
|
||||||
{
|
|
||||||
write-host "Module found: $($module.Name) Module Version: $($module.Version)"
|
|
||||||
if($module.Version.ToString() -ne " ")
|
|
||||||
{
|
|
||||||
Write-Host "Another installation of AzureRM module is detected with version $($module.Version.ToString()) at path: $($module.Path)"
|
|
||||||
throw "AzureRM module uninstallation unsuccessful"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#### NOW The correct Modules need to be saved in C:\Modules
|
#### NOW The correct Modules need to be saved in C:\Modules
|
||||||
|
$installPSModulePath = 'C:\Modules'
|
||||||
if($(Test-Path -LiteralPath "C:\Modules") -eq $true)
|
if(-not (Test-Path -LiteralPath $installPSModulePath))
|
||||||
{
|
{
|
||||||
Write-Host "C:\Modules directory is already present. Beginning to clear it up completely"
|
Write-Host "Creating '$installPSModulePath' folder to store PowerShell Azure modules"
|
||||||
Remove-Item -Path "C:\Modules" -Recurse -Force
|
$null = New-Item -Path $installPSModulePath -ItemType Directory
|
||||||
}
|
}
|
||||||
|
|
||||||
mkdir "C:\Modules"
|
# Powershell Azure modules to install
|
||||||
|
$psAzureModulesToInstall = @{
|
||||||
|
"azurerm" = @(
|
||||||
|
"2.1.0"
|
||||||
|
"3.8.0"
|
||||||
|
"4.2.1"
|
||||||
|
"5.1.1"
|
||||||
|
"6.7.0"
|
||||||
|
"6.13.1"
|
||||||
|
)
|
||||||
|
|
||||||
$directoryListing = Get-ChildItem -Path "C:\Modules"
|
"azure" = @(
|
||||||
|
"2.1.0"
|
||||||
|
"3.8.0"
|
||||||
|
"4.2.1"
|
||||||
|
"5.1.1"
|
||||||
|
"5.3.0"
|
||||||
|
)
|
||||||
|
|
||||||
if($directoryListing.Length -gt 0)
|
"az" = @(
|
||||||
|
"1.0.0"
|
||||||
|
"1.6.0"
|
||||||
|
"2.3.2"
|
||||||
|
"2.6.0"
|
||||||
|
"3.1.0"
|
||||||
|
"3.5.0"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
# Download Azure PowerShell modules
|
||||||
|
foreach($psmoduleName in $psAzureModulesToInstall.Keys)
|
||||||
{
|
{
|
||||||
Write-Host "C:\Modules was not deleted properly. It still has the following contents:"
|
Write-Host "Installing '$psmoduleName' to the '$installPSModulePath' path:"
|
||||||
$directoryListing
|
$psmoduleVersions = $psAzureModulesToInstall[$psmoduleName]
|
||||||
}
|
foreach($psmoduleVersion in $psmoduleVersions)
|
||||||
else {
|
{
|
||||||
Write-Host "The Directory is clean. There are no contents present in it"
|
$psmodulePath = Join-Path $installPSModulePath "${psmoduleName}_${psmoduleVersion}"
|
||||||
}
|
Write-Host " - $psmoduleVersion [$psmodulePath]"
|
||||||
|
try
|
||||||
# Download and unzip the stored AzurePSModules from the vstsagentools public blob
|
{
|
||||||
$extractLocation = "C:\Modules"
|
Save-Module -Path $psmodulePath -Name $psmoduleName -RequiredVersion $psmoduleVersion -Force -err
|
||||||
$azurePsUri = @(
|
}
|
||||||
"https://vstsagenttools.blob.core.windows.net/tools/azurepowershellmodules/AzurePSModules.M157.20190808.27979.zip",
|
catch
|
||||||
"https://vstsagenttools.blob.core.windows.net/tools/azurepowershellmodules/AzureRmPSModules.M157.20190808.27379.zip",
|
{
|
||||||
"https://vstsagenttools.blob.core.windows.net/tools/azurepowershellmodules/AzPSModules.M163.20191211.17769.zip"
|
Write-Host "Error: $_"
|
||||||
)
|
exit 1
|
||||||
|
|
||||||
$azureRMModulePath = "C:\Modules\azurerm_2.1.0"
|
|
||||||
$azureModulePath = "C:\Modules\azure_2.1.0"
|
|
||||||
$finalPath = ""
|
|
||||||
$environmentPSModulePath = [Environment]::GetEnvironmentVariable("PSModulePath", "Machine")
|
|
||||||
$existingPaths = $environmentPSModulePath -split ';' -replace '\\$',''
|
|
||||||
|
|
||||||
if ($existingPaths -notcontains $azureRMModulePath) {
|
|
||||||
$finalPath = $azureRMModulePath
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($existingPaths -notcontains $azureModulePath) {
|
|
||||||
if($finalPath -ne "") {
|
|
||||||
$finalPath = $finalPath + ";" + $azureModulePath
|
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
$finalPath = $azureModulePath
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($finalPath -ne "") {
|
# Add AzureRM and Azure modules to the PSModulePath
|
||||||
[Environment]::SetEnvironmentVariable("PSModulePath", $finalPath + ";" + $env:PSModulePath, "Machine")
|
$finalModulePath = '{0};{1};{2}' -f "${installPSModulePath}\azurerm_6.13.1", "${installPSModulePath}\azure_5.3.0", $env:PSModulePath
|
||||||
}
|
[Environment]::SetEnvironmentVariable("PSModulePath", $finalModulePath, "Machine")
|
||||||
|
|
||||||
$env:PSModulePath = $env:PSModulePath.TrimStart(';')
|
|
||||||
|
|
||||||
foreach ($uri in $azurePsUri)
|
|
||||||
{
|
|
||||||
$targetFile = Download-Zip -BlobUri $uri
|
|
||||||
Extract-Zip -ZipFilePath $targetFile -TargetLocation $extractLocation
|
|
||||||
}
|
|
||||||
@@ -5,57 +5,38 @@
|
|||||||
|
|
||||||
Import-Module -Name ImageHelpers -Force
|
Import-Module -Name ImageHelpers -Force
|
||||||
|
|
||||||
$DefaultModule = Get-Module -Name AzureRM -ListAvailable | Select-Object -First 1
|
|
||||||
|
|
||||||
$env:PSModulePath = $env:PSModulePath + ";C:\Modules"
|
|
||||||
|
|
||||||
$azureModules = Get-Module -Name Azure -ListAvailable | Select-Object Name,Version,Path | Format-Table | Out-String
|
|
||||||
|
|
||||||
Write-Host "The Azure Modules finally present are:"
|
|
||||||
$azureModules
|
|
||||||
|
|
||||||
if( ($azureModules -match "2.1.0") -and ($azureModules -match "3.8.0") -and ($azureModules -match "4.2.1") -and ($azureModules -match "5.1.1"))
|
|
||||||
{
|
|
||||||
Write-Host "Required Azure modules are present"
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host "One or more required Azure modules are not present"
|
|
||||||
throw "One or more required Azure modules are not present."
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$azureRMModules = Get-Module -Name AzureRM -ListAvailable | Select-Object Name,Version,Path | Format-Table | Out-String
|
|
||||||
|
|
||||||
Write-Host "The AzureRM Modules finally present are:"
|
|
||||||
$azureRMModules
|
|
||||||
|
|
||||||
if( ($azureRMModules -match "2.1.0") -and ($azureRMModules -match "3.8.0") -and ($azureRMModules -match "4.2.1") -and ($azureRMModules -match "5.1.1"))
|
|
||||||
{
|
|
||||||
Write-Host "Required AzureRM modules are present"
|
|
||||||
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Write-Host "One or more required AzureRM modules are not present"
|
|
||||||
throw "One or more required AzureRM modules are not present."
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$azureModules = Get-Module -Name AzureRM -ListAvailable
|
|
||||||
|
|
||||||
|
|
||||||
# Adding description of the software to Markdown
|
# Adding description of the software to Markdown
|
||||||
$SoftwareName = "Azure/AzureRM Powershell modules"
|
function Add-ModuleDescription
|
||||||
|
{
|
||||||
|
param($DefaultModule, [String]$ModuleName)
|
||||||
|
|
||||||
$Description = @"
|
# Adding description of the software to Markdown
|
||||||
|
$SoftwareName = "$ModuleName PowerShell module"
|
||||||
|
|
||||||
|
if ($DefaultModule)
|
||||||
|
{
|
||||||
|
$Description = @"
|
||||||
#### $($DefaultModule.Version)
|
#### $($DefaultModule.Version)
|
||||||
|
|
||||||
This version is installed and is available via ``Get-Module -ListAvailable``
|
This version is installed and is available via ``Get-Module -ListAvailable``
|
||||||
"@
|
"@
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$Description = ""
|
||||||
|
}
|
||||||
|
|
||||||
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|
||||||
|
if($ModuleName -eq 'Az')
|
||||||
foreach( $module in $azureModules)
|
{
|
||||||
{
|
$azureModules = Get-ChildItem C:\Modules\az_*\Az\*\*.psd1 | Select @{n="Version";e={[Version]$_.Directory.Name}},@{n="Path";e={$_.FullName}}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$azureModules = Get-Module -Name $ModuleName -ListAvailable | Sort-Object Version -Unique
|
||||||
|
}
|
||||||
|
foreach($module in $azureModules)
|
||||||
|
{
|
||||||
if($module.Version -ne $DefaultModule.Version)
|
if($module.Version -ne $DefaultModule.Version)
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -64,8 +45,59 @@ foreach( $module in $azureModules)
|
|||||||
|
|
||||||
This version is saved but not installed
|
This version is saved but not installed
|
||||||
_Location:_ $($module.Path)
|
_Location:_ $($module.Path)
|
||||||
|
|
||||||
"@
|
"@
|
||||||
Add-ContentToMarkdown -Content $CurrentModule
|
Add-ContentToMarkdown -Content $CurrentModule
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Validate-AzureModule
|
||||||
|
{
|
||||||
|
param([String]$ModuleName, [String[]]$ModuleVersions)
|
||||||
|
|
||||||
|
if ($ModuleName -eq 'Az')
|
||||||
|
{
|
||||||
|
$installedVersions = Get-ChildItem C:\Modules\az_*\Az\* -Name
|
||||||
|
$prop = @{n="Name";e={"Az"}},@{n="Version";e={[Version]$_.Directory.Name}},@{n="Path";e={$_.FullName}}
|
||||||
|
$azureModules = Get-ChildItem C:\Modules\az_*\Az\*\*.psd1 | Select $prop
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$azureModules = Get-Module -Name $ModuleName -ListAvailable
|
||||||
|
$installedVersions = $azureModules | Foreach-Object {$_.Version.ToString()}
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Host "The $ModuleName module finally present are:"
|
||||||
|
$azureModules | Select-Object Name,Version,Path | Format-Table | Out-String
|
||||||
|
|
||||||
|
foreach($version in $ModuleVersions)
|
||||||
|
{
|
||||||
|
if ($installedVersions -notcontains $version)
|
||||||
|
{
|
||||||
|
Write-Host "Required '$ModuleName' module '$version' version is not present"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get default modules version
|
||||||
|
$defaultAzureRMModule = Get-Module -Name AzureRM -ListAvailable
|
||||||
|
$defaultAzureModule = Get-Module -Name Azure -ListAvailable
|
||||||
|
|
||||||
|
# Add modules to the PSModulePath
|
||||||
|
$env:PSModulePath = $env:PSModulePath + ";C:\Modules"
|
||||||
|
|
||||||
|
# Validate Azure modules and versions
|
||||||
|
$azurermVersions = "2.1.0", "3.8.0", "4.2.1", "5.1.1", "6.7.0", "6.13.1"
|
||||||
|
Validate-AzureModule -ModuleName AzureRM -ModuleVersions $azurermVersions
|
||||||
|
|
||||||
|
$azureVersions = "2.1.0", "3.8.0", "4.2.1", "5.1.1", "5.3.0"
|
||||||
|
Validate-AzureModule -ModuleName Azure -ModuleVersions $azureVersions
|
||||||
|
|
||||||
|
$azVersions = "1.0.0", "1.6.0", "2.3.2", "2.6.0", "3.1.0", "3.5.0"
|
||||||
|
Validate-AzureModule -ModuleName Az -ModuleVersions $azVersions
|
||||||
|
|
||||||
|
# Adding description of the software to Markdown
|
||||||
|
Add-ModuleDescription -DefaultModule $defaultAzureRMModule -ModuleName AzureRM
|
||||||
|
Add-ModuleDescription -DefaultModule $defaultAzureModule -ModuleName Azure
|
||||||
|
Add-ModuleDescription -ModuleName Az
|
||||||
Reference in New Issue
Block a user