2

我正在尝试编写一个脚本,我可以在 Azure 上自动创建一个新的云服务实例。我无法让 New-AzureDeployment cmdlet 正常工作。

CSPKG 和 CSCFG 文件都存储在 Azure 上的同一存储帐户下,但在不同的容器中。它们是使用 CloudBerry 上传的。

param(
    [parameter(Mandatory=$False)]
    [string] $StorageAccount = 'storageaccount',

    [parameter(Mandatory=$False)]
    [string] $ServiceName = 'cloudservicesdev',

    [parameter(Mandatory=$False)]
    [string] $Slot = 'Production',

    [parameter(Mandatory=$False)]
    [string] $Label = 'BASE'
)

Write-Output "Start of workflow"

$cert = Get-AutomationCertificate -Name 'Credential'
$subID = 'subId'

Set-AzureSubscription -SubscriptionName "SubName" -CurrentStorageAccountName $StorageAccount -Certificate $cert -SubscriptionId $subID 

Select-AzureSubscription "SubName"

$package = (Get-AzureStorageBlob -blob "package.cspkg" -Container "package").ICloudBlob.uri.AbsoluteUri

$config = (Get-AzureStorageBlob -blob "Config - Dev.cscfg" -Container "config").ICloudBlob.uri.AbsoluteUri

New-AzureDeployment -ServiceName "$ServiceName" -Slot "$Slot" -Package "$package" -Configuration "$config" -Label "$Label"

我收到以下错误

2014-12-08 05:57:57 PM, Error: New-AzureDeployment : The given path's format is not supported.
At Create_New_Cloud_Service_Instance:40 char:40
+ 
+ CategoryInfo          : NotSpecified: (:) [New-AzureDeployment], NotSupportedException
+ FullyQualifiedErrorId : 
System.NotSupportedException,Microsoft.WindowsAzure.Commands.ServiceManagement.HostedServices.NewAzureDeploymentCommand

我检查了 $package 和 $config 变量,它们指向我期望的文件位置(https://storageaccount.blob.core.windows.net/package/package.cspkghttps://storageaccount .blob.core.windows.net/config/Config%20-%20Dev.cscfg)。它们与我在 Storage 中导航到其容器下的文件时看到的 URL 相匹配。

这看起来与我看到的示例相似。我做错了什么?

这是我根据乔下面的回答使用的新代码

我还使用了这个示例脚本https://gallery.technet.microsoft.com/scriptcenter/Continuous-Deployment-of-A-eeebf3a6来帮助使用 Azure 自动化沙箱

param(
    [parameter(Mandatory=$False)]
    [string] $StorageAccount = 'storageaccount',

    [parameter(Mandatory=$False)]
    [string] $ServiceName = 'cloudservicesdev',

    [parameter(Mandatory=$False)]
    [string] $Slot = 'Production',

    [parameter(Mandatory=$False)]
    [string] $Label = 'BASE'
)

Write-Output "Start of workflow"

$cert = Get-AutomationCertificate -Name 'Credential'
$subID = 'subId'

Set-AzureSubscription -SubscriptionName "SubName" -CurrentStorageAccountName $StorageAccount -Certificate $cert -SubscriptionId $subID 

Select-AzureSubscription "SubName"

$package = (Get-AzureStorageBlob -blob "package.cspkg" -Container "package").ICloudBlob.uri.AbsoluteUri
$TempFileLocation = "C:\temp\Config - Dev.cscfg"
$config = (Get-AzureStorageBlobContent -blob "Config - Dev.cscfg" -Container "config" -Destination $TempFileLocation -Force)

New-AzureDeployment -ServiceName "$ServiceName" -Slot "$Slot" -Package "$package" -Configuration $TempFileLocation -Label "$Label"
4

1 回答 1

3

New-AzureDeployment 的 -Package 参数应该像您所做的那样传递一个存储 URI,但 -Configuration 参数需要一个本地文件。有关详细信息,请参阅http://msdn.microsoft.com/en-us/library/azure/dn495143.aspx 。

因此,您需要在 Runbook 中将 $config URI 处的文件下载到 Azure 自动化沙箱,然后将该文件的本地路径传递给 New-AzureDeployment。

于 2014-12-08T23:52:31.387 回答