你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

New-AzureRmServiceFabricCluster

此命令使用你提供的证书或系统生成的自签名证书来设置新的 Service Fabric 群集。 它可以使用默认模板或你提供的自定义模板。 可以选择指定文件夹以导出自签名证书,或稍后从密钥保管库提取证书。

警告

AzureRM PowerShell 模块已自 2024 年 2 月 29 日起正式弃用。 为了确保持续获得支持和更新,建议用户从 AzureRM 迁移到 Az PowerShell 模块。

尽管 AzureRM 模块仍可运行,但不再受到维护或支持,任何继续使用的行为都由用户自行决定并自行承担风险。 有关过渡到 Az 模块的指导,请参阅我们的迁移资源

语法

New-AzureRmServiceFabricCluster
   [-ResourceGroupName] <String>
   [-CertificateOutputFolder <String>]
   [-CertificatePassword <SecureString>]
   [-KeyVaultResouceGroupName <String>]
   [-KeyVaultName <String>]
   -Location <String>
   [-Name <String>]
   [-VmUserName <String>]
   [-ClusterSize <Int32>]
   [-CertificateSubjectName <String>]
   -VmPassword <SecureString>
   [-OS <OperatingSystem>]
   [-VmSku <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
New-AzureRmServiceFabricCluster
   [-ResourceGroupName] <String>
   -TemplateFile <String>
   -ParameterFile <String>
   [-VmPassword <SecureString>]
   -SecretIdentifier <String>
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
New-AzureRmServiceFabricCluster
   [-ResourceGroupName] <String>
   -TemplateFile <String>
   -ParameterFile <String>
   [-CertificateOutputFolder <String>]
   [-CertificatePassword <SecureString>]
   [-KeyVaultResouceGroupName <String>]
   [-KeyVaultName <String>]
   [-CertificateSubjectName <String>]
   [-VmPassword <SecureString>]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
New-AzureRmServiceFabricCluster
   [-ResourceGroupName] <String>
   -TemplateFile <String>
   -ParameterFile <String>
   -CertificateFile <String>
   [-CertificatePassword <SecureString>]
   [-SecondaryCertificateFile <String>]
   [-SecondaryCertificatePassword <SecureString>]
   [-KeyVaultResouceGroupName <String>]
   [-KeyVaultName <String>]
   [-VmPassword <SecureString>]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]

说明

New-AzureRmServiceFabricCluster 命令使用你提供的证书或系统生成的自签名证书来设置新的 Service Fabric 群集。 使用的模板可以是默认模板,也可以是你提供的自定义模板。 可以选择指定文件夹以导出自签名证书,或稍后从密钥保管库提取证书。 如果要指定自定义模板和参数文件,则无需在参数文件中提供证书信息,系统将填充这些参数。 下面详细介绍了四个选项。 向下滚动以获取每个参数的说明。

示例

示例 1:仅指定要部署群集的群集大小、证书使用者名称和 OS。

$pass="Password#1234" | ConvertTo-SecureString -AsPlainText -Force
$RGname="test01"
$clusterloc="SouthCentralUS"
$subname="{0}.{1}.cloudapp.azure.com" -f $RGname, $clusterloc
$pfxfolder="c:\certs"

Write-Output "Create cluster in '$clusterloc' with cert subject name '$subname' and cert output path '$pfxfolder'"

New-AzureRmServiceFabricCluster -ResourceGroupName $RGname -Location $clusterloc -ClusterSize 5 -VmPassword $pass -CertificateSubjectName $subname -CertificateOutputFolder $pfxfolder -CertificatePassword $pass -OS WindowsServer2016Datacenter

此命令仅指定要部署群集的群集大小、证书使用者名称和 OS。

示例 2:在密钥保管库中指定现有证书资源以及用于部署群集的自定义模板

$RGname="test20"
$templateParmfile="C:\service-fabric-secure-nsg-cluster-65-node-3-nodetype\azuredeploytest.parameters.json"
$templateFile="C:\azure-quickstart-templates\service-fabric-secure-nsg-cluster-65-node-3-nodetype\azuredeploy.json"
$secretId="https://test1.vault.azure.net:443/secrets/testcertificate4/56ec774dc61a462bbc645ffc9b4b225f"

New-AzureRmServiceFabricCluster -ResourceGroupName $RGname -TemplateFile $templateFile -ParameterFile $templateParmfile -SecretIdentifier $secretId

此命令指定密钥保管库中的现有证书资源以及用于部署群集的自定义模板。

示例 3:使用自定义模板创建新群集。 为密钥保管库指定不同的资源组名称,并让系统将新证书上传到其中

$pass="Password#1234" | ConvertTo-SecureString -AsPlainText -Force
$RGname="test20"
$keyVaultRG="test20kvrg"
$keyVault="test20kv"
$clusterloc="SouthCentralUS"
$subname="{0}.{1}.$clusterloc.cloudapp.azure.com" -f $RGName, $clusterloc
$pfxfolder="~\Documents"
$templateParmfile="C:\service-fabric-secure-nsg-cluster-65-node-3-nodetype\azuredeploytest.parameters.json"
$templateFile="C:\service-fabric-secure-nsg-cluster-65-node-3-nodetype\azuredeploy.json"

New-AzureRmServiceFabricCluster -ResourceGroupName $RGname -TemplateFile $templateFile -ParameterFile $templateParmfile -CertificateOutputFolder $pfxfolder -CertificatePassword $pass -KeyVaultResouceGroupName $keyVaultRG  -KeyVaultName $keyVault -CertificateSubjectName $subname

此命令使用自定义模板创建新的群集。 为密钥保管库指定不同的资源组名称,并让系统将新证书上传到其中

示例 4:自带证书和自定义模板并创建新群集

$pass="Password#1234" | ConvertTo-SecureString -AsPlainText -Force
$RGname="test20"
$keyVaultRG="test20kvrg"
$keyVault="test20kv"
$pfxsourcefile="c:\Mycertificates\my2017Prodcert.pfx"
$templateParmfile="~\Documents\GitHub\azure-quickstart-templates-parms\service-fabric-secure-nsg-cluster-65-node-3-nodetype\azuredeploytest.parameters.json"
$templateFile="~\GitHub\azure-quickstart-templates\service-fabric-secure-nsg-cluster-65-node-3-nodetype\azuredeploy.json"

New-AzureRmServiceFabricCluster -ResourceGroupName $RGname -TemplateFile $templateFile -ParameterFile $templateParmfile -CertificateFile $pfxsourcefile -CertificatePassword $pass -KeyVaultResouceGroupName $keyVaultRG -KeyVaultName $keyVault

此命令将允许你自带证书和自定义模板并创建新的群集。

参数

-CertificateFile

主群集证书的现有证书文件路径。

类型:String
别名:Source
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-CertificateOutputFolder

要创建的新证书文件的文件夹。

类型:String
别名:Destination
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-CertificatePassword

证书文件的密码。

类型:SecureString
别名:CertPassword
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-CertificateSubjectName

要创建的证书的使用者名称。

类型:String
别名:Subject
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-ClusterSize

群集中节点的数量。 默认值为 5 个节点。

类型:Int32
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-Confirm

提示你在运行 cmdlet 之前进行确认。

类型:SwitchParameter
别名:cf
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-DefaultProfile

用于与 Azure 通信的凭据、帐户、租户和订阅。

类型:IAzureContextContainer
别名:AzureRmContext, AzureCredential
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-KeyVaultName

Azure Key Vault 名称。 如果未指定,则默认为资源组名称。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-KeyVaultResouceGroupName

Azure Key Vault 资源组名称。 如果未指定,则默认为资源组名称。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-Location

资源组位置。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-Name

指定群集的名称。 如果未指定,它将与资源组名称相同。

类型:String
别名:ClusterName
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-OS

构成群集的 VM 的操作系统。

类型:OperatingSystem
别名:VmImage
接受的值:WindowsServer2012R2Datacenter, WindowsServer2016Datacenter, WindowsServer2016DatacenterwithContainers, UbuntuServer1604
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-ParameterFile

模板参数文件的路径。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-ResourceGroupName

指定资源组的名称。

类型:String
Position:0
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-SecondaryCertificateFile

辅助群集证书的现有证书文件路径。

类型:String
别名:SecSource
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-SecondaryCertificatePassword

证书文件的密码。

类型:SecureString
别名:SecCertPassword
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-SecretIdentifier

现有的 Azure 密钥保管库机密 URL,例如:“https://mykv.vault.azure.net:443/secrets/mysecrets/55ec7c4dc61a462bbc645ffc9b4b225f”。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-TemplateFile

模板文件的路径。

类型:String
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-VmPassword

Vm 的密码。

类型:SecureString
Position:Named
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-VmSku

Vm SKU。

类型:String
别名:Sku
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-VmUserName

用于登录到 Vm 的用户名。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-WhatIf

显示运行该 cmdlet 时会发生什么情况。 cmdlet 未运行。

类型:SwitchParameter
别名:wi
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

输入

String

参数:CertificateFile(ByValue)、CertificateOutputFolder(ByValue)、CertificateSubjectName (ByValue)、KeyVaultName (ByValue)、KeyVaultResouceGroupName (ByValue)、Location (ByValue)、Name(ByValue)、ParameterFile(ByValue)、SecondaryCertificateFile(ByValue)、SecretIdentifier (ByValue)、TemplateFile (ByValue)、VmUserName (ByValue)

SecureString

参数:CertificatePassword (ByValue)、SecondaryCertificatePassword (ByValue)

Int32

参数:ClusterSize (ByValue)

OperatingSystem

输出

PSDeploymentResult