公有云一個很是大的優點,就是能夠根據需求進行開停機。因爲計費是按時進行的,從而實現節省成本。this
Azure上用腳本按時開停機已經有不少部署的案例。本文將介紹採用VM Tag中規定的時間進行開停機的腳本。spa
Tag是Azure ARM模式中的一個資源的屬性。用戶能夠根據需求對這個資源進行標識,以便在後期的操做中進行分組操做,好比積分信息的收集。code
具體實現以下:blog
一 開關機需求:ip
根據內網IP地址列表檢查VM上的TAG信息,提取TAG名稱是指定的鍵值對。這個鍵值對的值應該是一個時間段,在這個時間段內,VM應該處於關機狀態。資源
二 實現思路:部署
在Windows機器裏訂閱任務計劃,每10分鐘運行一次腳本。get
腳本的內容:input
1 腳本讀取csv文件,文件中包含IP地址和TAG的名稱it
2 根據IP地址列表查找機器
3 提取VM的TAG信息, CSV文件中定義了TAG的名稱,將是這個名稱的TAG取出,並將其值取出,這個值應該是一個時間段,前面一個是關機時間,後面一個是開機時間
4 獲取當前時間
5 當前時間與TAG時間進行比較,根據策略進行開關機
三 腳本和文件
1 CSV文件
address |
tag |
10.206.5.7 |
test |
10.206.5.11 |
test |
2 PowerShell腳本
function modifyvm-basedontag{ param( #csv文件的路徑 [Parameter(Mandatory=$true)] [String]$csvfilepath ) #導入CSV文件 $inputvalues = Import-Csv -Path $csvfilepath #獲取網卡信息,以便經過內網ip地址進行操做 $nics = Get-AzureRmNetworkInterface #對CSV中的內容逐條進行處理 foreach($input in $inputvalues){ #獲取內網IP的NIC信息 foreach($nic in $nics){ $tempa = $nic.IpConfigurations[0].PrivateIpAddress.ToString() $tempb = $input.address.ToString() if ($tempa -eq $tempb){ break} } #IP地址對應的VM名稱 $vmname = $nic.VirtualMachine.Id.Split('/')[-1] #獲取VM的TAG信息,TAG信息從CSV中獲取 $vmtag = Find-AzureRmResource -TagName $input.tag | Where-Object {$_.resourcetype -like "Microsoft.Compute/virtualMachines"} | Where-Object {$_.name -match $vmname} #若是沒有此TAG,程序退出 if(!$vmtag){write-host "please check the tag's name"; exit} #獲取此VM $vm= get-azurermvm -ResourceGroupName $vmtag.ResourceGroupName -Name $vmtag.Name #VM TAG的key信息 $tKeys = $vm.Tags| select -ExpandProperty keys #VM TAG的值 $tvalues = $vm.Tags | select -ExpandProperty values #若是VM沒有TAG,程序退出 if($vm.Tags.Count -eq 0){write-host "this VM has no tag"; exit} #若是VM的TAG有一個,以下操做 if($vm.Tags.Count -eq 1){ if($tKeys -eq $input.tag){$time = $tvalues} } #若是VM TAG值超過一個,以下操做 else { for($i=0;$i -lt $vm.tags.Count; $i++){ if($tKeys[$i] -eq $input.tag){$time = $tvalues[$i];write-host $time;break} } } #獲取目前的時間 $now = get-date write-host "Now is $now" write-host "VM stop time is $time" #tag的前面時間是關機時間,後面是開機時間。之間表示關機時間 $stoptime=get-date $time.Split('-')[0] $starttime=get-date $time.Split('-')[1] #若是開機時間小於關機時間,說明日期須要加1 if($starttime -le $stoptime){$starttime = $starttime.AddDays(1)} #獲取VM的Power狀態 $status = get-azurermvm -ResourceGroupName $vmtag.ResourceGroupName -Name $vmtag.Name -Status $vmstatus=$status.Statuses[1].Code.Split('/')[-1] #在VM處於運行狀態時: if($vmstatus -eq "running"){ #小於中止時間,不作操做 if($now -lt $stoptime){write-host "it's time to run vm, and VM is running, do nothing"} #大於中止時間,小於開機時間,停機 if(($now -gt $stoptime) -and ($now -lt $starttime)){write-host "VM is running, it is time to stop"; #stop-azurermvm -ResourceGroupName $vmtag.ResourceGroupName -Name $vmtag.Name -Force } #大於開機時間,不作操做 if($now -gt $starttime) {write-host "it's time to start the vm, and the vm is running, do nothing"} } #機器處於停機狀態 else{ #小於停機時間,開機 if($now -lt $stoptime){write-host "it's time to start VM, and the vm is stopped, start it"; #start-azurermvm -ResourceGroupName $vmtag.ResourceGroupName -Name $vmtag.Name } #大於開機時間,小於停機時間,不作操做 if(($now -gt $stoptime) -and ($now -lt $starttime)){write-host "it is time to stop, and the VM is stopped, do nothing"} #大於開機時間,開機 if($now -gt $starttime) {write-host "it's time to start the vm, and the vm is stopped, start it"; #start-azurermvm -ResourceGroupName $vmtag.ResourceGroupName -Name $vmtag.Name } } } } modifyvm-basedontag -csvfilepath D:\a.csv