зеркало из https://github.com/microsoft/Azure-DDP.git
78 строки
2.9 KiB
XML
78 строки
2.9 KiB
XML
<!--Set Cluster Variables-->
|
|
|
|
<Cluster>
|
|
<!--Set the subscription-->
|
|
<SubscriptionName>My Subscription</SubscriptionName>
|
|
|
|
<!--Set Affinity Group Settings-->
|
|
<!--affinityGroupLocation is the location where the cluster will deploy. East US, West US, East Asia, Southeast Asia, North Europe, West Europe are examples of valid locations-->
|
|
<!--affinityGroupName must be globally unique-->
|
|
<affinityGroupLocation>West US</affinityGroupLocation>
|
|
<affinityGroupName>ddpWest</affinityGroupName>
|
|
<affinityGroupDescription>Affinity Group DDP Sample</affinityGroupDescription>
|
|
<affinityGroupLabel>AG for DDP Sample</affinityGroupLabel>
|
|
|
|
<!--Set Virtual Network Settings-->
|
|
<!--If the virtual network already exists, input the vnet settings -->
|
|
<!--If the virtual networ doesn't exist, the scripts will generate the vnet based on the settings -->
|
|
<!--Valid address space settings include 192.168.0.0, 10.0.0.0 and 172.16.0.0 -->
|
|
<!--Network faq is here http://msdn.microsoft.com/en-us/library/windowsazure/dn133803.aspx -->
|
|
<virtualNetworkName>clb01</virtualNetworkName>
|
|
<virtualNetworkAddressSpace>172.16.0.0</virtualNetworkAddressSpace>
|
|
<virtualNetworkCIDR>17</virtualNetworkCIDR>
|
|
<virtualSubnetname>App</virtualSubnetname>
|
|
<subnetAddressSpace>172.16.0.0</subnetAddressSpace>
|
|
<subnetCIDR>17</subnetCIDR>
|
|
|
|
<!--Set Storage Account Settings-->
|
|
<!--All storage account names must be globally unique-->
|
|
<storageAccountName>clb0</storageAccountName>
|
|
<storageAccountList>
|
|
<Name>clb001</Name>
|
|
<Name>clb002</Name>
|
|
</storageAccountList>
|
|
|
|
<!--Set Virtual Machine Settings-->
|
|
<!--cloudServicePrefix must be globally unique-->
|
|
<adminUserName>clusteradmin</adminUserName>
|
|
<adminPassword>Password.1</adminPassword>
|
|
<vmNamePrefix>clb0</vmNamePrefix>
|
|
<cloudServicePrefix>clb0</cloudServicePrefix>
|
|
|
|
<!--do not change the hosts/hostscript names-->
|
|
<hostsfile>.\hosts.txt</hostsfile>
|
|
<hostscript>.\hostscript.sh</hostscript>
|
|
|
|
<!--Set Management Node Variables-->
|
|
<ManagementNode>
|
|
<galleryimageName>OpenLogic</galleryimageName>
|
|
<instanceSize>A7</instanceSize>
|
|
<diskSizeInGB>500</diskSizeInGB>
|
|
<numOfDisks>2</numOfDisks>
|
|
<installerPort>8080</installerPort>
|
|
</ManagementNode>
|
|
|
|
<!--Set Clone Node Variable-->
|
|
<CloneNode>
|
|
<galleryimageName>OpenLogic</galleryimageName>
|
|
<instanceSize>A7</instanceSize>
|
|
</CloneNode>
|
|
|
|
<!--Set Clone Image Variables-->
|
|
<!--Set the name and label of the Clone Image. -->
|
|
<CloneImage>
|
|
<cloneimageName>clb0c</cloneimageName>
|
|
<cloneimageLabel>Test 0 Clone</cloneimageLabel>
|
|
</CloneImage>
|
|
|
|
<!--Set Cluster Nodes Variables-->
|
|
<ClusterNodes>
|
|
<instanceSize>A5</instanceSize>
|
|
<diskSizeInGB>1000</diskSizeInGB>
|
|
<numOfDisks>4</numOfDisks>
|
|
<vmNamePrefix>clb0</vmNamePrefix>
|
|
<cloudServicePrefix>clb0</cloudServicePrefix>
|
|
<numNodes>8</numNodes>
|
|
<numCloudServices>2</numCloudServices>
|
|
</ClusterNodes>
|
|
</Cluster> |